首页 > 服务器 > nginx开启rewrite例子
作者:ghostry 发布时间:2014-05-14 浏览: 4904
转载注明出处: https://blog.ghostry.cn/server/504.htmlif (-f $request_filename/index.html){
rewrite (.*) $1/index.html break;
}
if (-f $request_filename/index.php){
rewrite (.*) $1/index.php;
}
if (!-f $request_filename){
rewrite (.*) /index.php;
}
location ~ /\.ht {
deny all;
}
上一篇: Remmina无法连接到windows7远程桌面下一篇: ubuntu安装daloradius