Seraph
03-02-2006, 11:51 PM
With the current .htaccess given for SEO friendly URLs there is an issue. I can't log into my admincp for vBulletin. I have vBDrupal installed to the root director and vBulletin installed under /talk/
<IfModule mod_rewrite.c>
RewriteEngine on
# Rewrite current-style URLs of the form 'index.php?q=x'.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
</IfModule>
It forwards me to the vBDrupal page. When I try to access /talk/admincp/ with or without the index.php
What can I do to fix it?
<IfModule mod_rewrite.c>
RewriteEngine on
# Rewrite current-style URLs of the form 'index.php?q=x'.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
</IfModule>
It forwards me to the vBDrupal page. When I try to access /talk/admincp/ with or without the index.php
What can I do to fix it?