且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

删除Codeigniter URL中的index.php

更新时间:2023-02-21 22:54:41

您可以在.htaccess文件中使用以下代码:

You can use the below code in your .htaccess file :

RewriteEngine On
RewriteBase /my_project_name/
# Do not enable rewriting for files or directories that exist
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Rewrite to index.php/URL
RewriteRule ^(.*)$ index.php/$1 [PT,L]