Htaccess file removing index.php in CodeIgniter - 500 Internal Server Error?

A couple of changes made here try it out and see if this works.

A couple of changes made here try it out and see if this works: RewriteEngine On RewriteBase /MMSFL/ #Removes access to the system folder by users. #Additionally this will allow you to create a System. Php controller, #previously this would not have been possible.

#'system' can be replaced if you have renamed your system folder. RewriteCond %{REQUEST_URI} ^system. * RewriteRule ^(.*)$ /index.

Php/$1 L #When your application folder isn't in the system folder #This snippet prevents user access to the application folder #Submitted by: Fabdrol #Rename 'application' to your applications folder name. RewriteCond %{REQUEST_URI} ^application. * RewriteRule ^(.*)$ /index.

Php/$1 L #Checks to see if the user is attempting to access a valid file, #such as an image or css document, if this isn't true it sends the #request to index. Php RewriteCond %{REQUEST_FILENAME}! -f RewriteCond %{REQUEST_FILENAME}!

-d RewriteRule ^(.*)$ index. Php/$1 L,QSA # If we don't have mod_rewrite installed, all 404's # can be sent to index. Php, and everything works as normal.

# Submitted by: ElliotHaughin ErrorDocument 404 /index. Php Also make sure your directory is correct. (In RewriteBase).

Thanks Brandon, I literally just fixed it seconds ago. But this would of worked too :) thanks alot for answering! – ajh_8 Apr 25 '11 at 15:46.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions