09-09-2009, 01:34 PM
[eluser]Unknown[/eluser]
Same problem here - fixed with this as the .htaccess file:
Instead of this, which is in the CI user guide:
Basically, remove the leading "/" before index.php - and if you use an "assets" folder to store your css, images, etc. then add that sucker in there.
Same problem here - fixed with this as the .htaccess file:
Quote:RewriteEngine on
RewriteCond $1 !^(index\.php|assets|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [L]
Instead of this, which is in the CI user guide:
Quote:RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
Basically, remove the leading "/" before index.php - and if you use an "assets" folder to store your css, images, etc. then add that sucker in there.