RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !\.(jpg|gif|png|css|js)$ [NC]
RewriteRule ^(.*)$ index.php/$1 [L]
解决PHP框架URI重写后的资源文件不存在的问题
最新推荐文章于 2021-03-24 15:13:04 发布
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !\.(jpg|gif|png|css|js)$ [NC]
RewriteRule ^(.*)$ index.php/$1 [L]