Hi,
I am a newbie for Drupal, and I have a problem in enabling the Clean URL.
I am using Apache 2 with ModRewirte over Ubuntu. I checked and confirmed that the mod_rewrite is enabled with no problem. My drupal's top directory is /var/www and I have the following .htaccess file on the top directory. But, the clean URL is not working. It says "It appears your host is not configured correctly for Clean URLs. Please check for ModRewrite support with your administrator." when I click to enable at "administer >> settings" page.
Could anybody tell what would be the problem for this? Thank you so much.
<.htaccess file>
#
# Apache/PHP/Drupal settings:
#
# Protect files and directories from prying eyes.
Order deny,allow
Deny from all
# Set some options.
Options -Indexes
Options +FollowSymLinks
# Customized error messages.
ErrorDocument 404 /index.php
# Set the default handler.
DirectoryIndex index.php
# Override PHP settings. More exist in sites/default/settings.php, but
# the following cannot be changed at runtime. The first IfModule is
# for Apache 1.3, the second for Apache 2.
php_value magic_quotes_gpc 0
php_value register_globals 0
php_value session.auto_start 0