当前位置:Gxlcms > PHP教程 > CI里去掉index.php并识别cssjs文件技巧

CI里去掉index.php并识别cssjs文件技巧

时间:2021-07-01 10:21:17 帮助过:14人阅读

在 程序目录下

程序---

--Application

--system

统一目录新建一个.htaccess 文件

写如下代码即可



RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /tick/index.php/$1 [L]


OK 现在试试看, 多的不说了,

人气教程排行