mod_rewrite

Status
Not open for further replies.

sampuu

New Member
Messages
27
Reaction score
0
Points
0
I'm trying to use CodeIgniter to... well, ignite my code :lol:
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:

Corey

I Break Things
Staff member
Messages
34,551
Reaction score
204
Points
63
Please provide a link to where you are using it.

-Corey
 

Brandon

Former Senior Account Rep
Community Support
Messages
19,181
Reaction score
28
Points
48
Try this.

Code:
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /alpha/index.php/$1 [L]
 
Status
Not open for further replies.
Top