I'm trying to use CodeIgniter to... well, ignite my code
My problem is that the htaccess file included with CodeIgniter isn't working.
That code is supposed to mean that anyone going to the directory (in this case "/alpha") should be presented with "/alpha/index.php/". Or another example, "/alpha/home" should go to "/alpha/index.php/home".
It doesn't. Instead I get given an x10Hosting 404 page. Is mod_rewrite enabled and can anyone see a problem with that htaccess?
By the way, I'm on Absolut with Ad Free hosting.
My problem is that the htaccess file included with CodeIgniter isn't working.
Code:
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
That code is supposed to mean that anyone going to the directory (in this case "/alpha") should be presented with "/alpha/index.php/". Or another example, "/alpha/home" should go to "/alpha/index.php/home".
It doesn't. Instead I get given an x10Hosting 404 page. Is mod_rewrite enabled and can anyone see a problem with that htaccess?
By the way, I'm on Absolut with Ad Free hosting.
Last edited: