Posted by andersin88 on November 11, 2012 at 2:45am
What should i fill for the Directory?
my drupal version is 6, so the directory is fill
i found this post in http://drupal.org/node/1572984
# Added by alan
# to allow clean URLs in Drupal7
# copied from http://drupal.org/node/15365
#<Directory /var/www/example.com>
<Directory /usr/share/drupal7/>
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
</Directory>
<Directory /var/www/>
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
</Directory>
Comments
Drupal includes an .htaccess
Drupal includes an .htaccess files that had the necessary rules.
thank
thank