ThomasReggi
ThomasReggi

Reputation: 59365

Codeigniter within directory htaccess

I have a codeigniter project light inside the folder projects, it looks like this site.com/projects/light. For some reason the standard .htaccess will not route all calls to index.php. What needs to be changed or added?

RewriteEngine on
RewriteCond $1 !^(index\.php|assets|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]

Upvotes: 2

Views: 712

Answers (1)

imm
imm

Reputation: 5919

It looks like the RewriteRule is redirecting to /index.php, rather than /projects/light/index.php.

Upvotes: 2

Related Questions