I work with the Yii Framework on an Apache / 2.2.15 server (CentOS) .
The following line is uncommented in /etc/httpd/conf/httpd.conf
LoadModule rewrite_module modules/mod_rewrite.so
I can see mod_rewrite in the loaded module when I execute
<?php phpinfo(); ?>
Yii project structure:
/var/www/test/ /var/www/test/index.php /var/www/test/.htaccess
.htaccess
RewriteEngine on
It works fine when I do:
http://10.20.30.40/test/index.php/testcontroller/testaction
But when I do this:
http://10.20.30.40/test/testcontroller/testaction
The following error is displayed:
Not Found The requested URL /var/www/test/index.php was not found on this server.
Any idea?
source share