
01-29-2019, 06:50 AM
|
|
|
Join Date: Apr 2008
Location: Philippines
Posts: 588
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by aeternitasster
Same problem here, the Photoplog Gallery Selector button is not pointing to the correct path. What I mean by this is that:
HTML Code:
https://www.website.com/gallery/selector.php?e=vB_Editor_001_editor
should be
HTML Code:
https://www.website.com/photoplog/selector.php?e=vB_Editor_001_editor
I could not find the code under custom BB codes. Where/how do I change this?
In the meantime I've added a rewrite. In case someone else wants to do this, here is the code. Add this to .htaccess :
Code:
<IfModule mod_rewrite.c>
RewriteEngine on
# BEGIN Rewrite /gallery/ to /photoplog/
RewriteRule ^gallery/(.*)$ /photoplog/$1 [R=301,NC,L]
# END Rewrote /gallery/ to /photoplog/
</IfModule>
|
Will this work with vbulletin 3.8.x
|