Quote:
Originally Posted by bridge2heyday
Thanks ,
you have something installed in the root of your site ?
and you have your forum installed in sub directory /forum ?
anyway,
I will give you a scenario where I have forums installed in subdir /forums
assume you have domain www.domain.com
and vbulletin at www.domain.com/forums
in your admincp change vBulletin URL to www.domain.com instead of www.domain.com/forums
and then use this .htaccess
PHP Code:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(www.)?domain.com$
RewriteCond %{REQUEST_URI} !^/forums/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /forums/$1
Tricky but working fine
Note : this will not work if your directory is /forum , you can rename in that case
--------------- Added [DATE]1466173770[/DATE] at [TIME]1466173770[/TIME] ---------------
Yes , we are in vb5 discussion forum 
|
Thanks a ton for the advice! although just ran into a final issue....after we updated VB url from domain.com/forums (VB installed dir) to domain.com i am not able to access to admincp and the forum breaks (links to css and images dont work) do you have any ideas? thank you