网页使用了一个YYUC的框架,该框架伪静态使用的是.htaccess文件实现,但现在主机是nginx环境,无法使用.htaccess文件,想问大神如何可以在nginx中使用。 该文件代码如下: <IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{REQUEST_FILENAME... 网页使用了一个YYUC的框架,该框架伪静态使用的是.htaccess文件实现,但现在主机是nginx环境,无法使用.htaccess文件,想问大神如何可以在nginx中使用。该文件代码如下:<IfModule mod_rewrite.c>RewriteEngine onRewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteRule . index.php [L]</IfModule>
1 回答
隔江千里
TA贡献1906条经验 获得超10个赞
nignx不需要用htaccess,只需要在nginx配置文件加上如下内容就可以,请根据自己情况自行修改
123456 location / { if (!-e $request_filename) { rewrite ^/(.*)$ /index.php/$1 last; break; } }
- 1 回答
- 0 关注
- 2183 浏览
添加回答
举报
0/150
提交
取消