How can I remove index.php using Codeigniter on XAMPP?
问题 I can't hide Codeigniter index.php on XAMPP 1.7.3 URL: http://localhost/Servidor/agentesRainbow/index.php/agentes/tony tony is an argument My actual .htaccess: <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /Servidor/agentesRainbow/ #'system' can be replaced if you have renamed your system folder. RewriteCond %{REQUEST_URI} ^system.* RewriteRule ^(.*)$ /Servidor/agentesRainbow/index.php/$1 [L] #Checks to see if the user is attempting to access a valid file, #such as an image or css