httpd.conf AllowOverride All
问题 I am trying to remove the index.php from my codeigniter URL. I have apache24 with codeigniter and ion auth. The only way I can get this to work is by allowing AllowOverride All . The relevant code is: <Directory "c:/Apache24/htdocs"> Options Indexes FollowSymLinks AllowOverride All Require all granted </Directory> Using AllowOverride None this returns a 404 error code. Using AllowOverride All it works. What are the security implications with this on a production server? 回答1: AllowOverride