remove index.php codeigniter in localhost/folder/my_codeigni



我尝试了一些来自任何源的解决方案,但是如果我的项目在其他文件夹中,则仍然无法删除index.php,例如: http://http://localhost/project/my_codeigniter ,如果我的项目在> http://localhost/my_codeigniter

希望你能帮我,谢谢!

您可以在项目root文件夹上创建.htaccess文件。这样的文件内容;

RewriteEngine on
RewriteCond $1 !^(index.php|assets)
RewriteRule ^(.*)$ /your-project/index.php/$1 [L]

最新更新