<IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php?$1 [L] </IfModule>any suggestions would be greatly appreciated
Michael Rüfenacht wrote on Wednesday 10th of August 2011:In which folder is your .htaccess?
<IfModule mod_rewrite.c> RewriteEngine on RewriteBase /public RewriteRule ^(/)?$ index.php/$1 [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php/$1 [L] </IfModule>If your not in the root folder, you have to change the RewriteBase accordingly.
- fuel/ - mail/ - public_ftp/ - public_html/ -- index.php -- assets/ -- .htaccess - www/
<IfModule mod_rewrite.c> RewriteEngine on RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ yourtestfile.php/$1 [L] </IfModule>If mod_rewrite works, yourtestfile.php will be called instead the index.php
It looks like you're new here. If you want to get involved, click one of these buttons!