i didn't use .htaccess but i edited httpd.conf of my server.

First thanks for the info at http://drupal.org/node/15365

i have added


RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]

Now, everything seems working fine, i managed to eliminating the "?q=" in internal URLs

BUT, when i click administrator, it din't work, it list out all the content inside the /admin directory.

what's the problem?? this fault only happens for /admin

...

Comments

jw867’s picture

This is a chunk from my site config. It appears to work. I did not use rewritebase.

RewriteLog "/var/log/apache2/drupal/rewrite.log"
RewriteLogLevel 0

DocumentRoot /var/www/drupal
DirectoryIndex index.php

Options -Indexes
Options +FollowSymLinks
Order allow,deny
allow from all

RewriteEngine on

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
ErrorDocument 404 /index.php