I have a problem with drupal in Clean Url Module. In my apache conf I have: LoadModule rewrite_module modules/mod_rewrite.so Uncomment.
When I run #/usr/sbin/httpd -M I get the module:
rewrite_module (shared)
But in drupal I can't see (e.g) localhost/mydrupalpath/page (404), instead I need put "?q=" for get a result: localhost/mydrupalpath/?q=page.
In .htaccess too I have a correct configuration:
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
My server:
Server version: Apache/2.2.3 PHP Version 5.3.19 MySQL version 5.5.28 Drupal 6.19 Centos 5.8
Thanks.