#RewriteEngine on #RewriteCond $1 !^(index\.php|images|css|js|robots\.txt|favicon\.ico) #RewriteCond %{REQUEST_FILENAME} !-f #RewriteCond %{REQUEST_FILENAME} !-d #RewriteRule ^(.*)$ ./index.php/$1 [L,QSA] #RewriteCond %{REQUEST_FILENAME}.php -f #RewriteRule !.*\.php$ %{REQUEST_FILENAME}.php [QSA,L] RewriteEngine on RewriteBase / RewriteCond $1 !^(index.php|resources|robots.txt) RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php/$1 [L,QSA]