PDA

View Full Version : .htaccess problem


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?

Seraph
03-03-2006, 01:29 AM
Seems like htaccess is screwing up my entire site.

I tried adding a new .htaccess with the following into my /talk/ folder, no luck

<IfModule mod_rewrite.c>
RewriteEngine off
</IfModule>

elmuerte
03-03-2006, 12:01 PM
if /talk/admincp/index.php doesn't work then something else is wrong

Seraph
03-03-2006, 12:36 PM
When I delete the .htaccess I can access it fine.

Also, who's online is crazed as all it shows is Unknown Location /favicon.ico for location.

elmuerte
03-03-2006, 02:07 PM
All I have in the forum/.htaccess is
RewriteEngine off

Seraph
03-03-2006, 03:10 PM
Seems to work as long as I don't have this in there, which I need.


AuthType Basic
AuthName "Access Denied"
AuthUserFile "/home/dir/.htpasswds/talk/admincp/passwd"
require valid-user

Seraph
03-03-2006, 03:11 PM
The entire modrewrite for vBdrupal is FUBAR.