前端之家收集整理的这篇文章主要介绍了
apache – 子目录下的nginx重写规则,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个wordpress网站在子目录下运行Nginx.
如何在子目录中编写重写规则?
或者任何人都可以转换这个Apache重写规则?我到处搜索有关Nginx重写规则但没有任何效果!
PHP$- [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /main/index.PHP [L]
任何帮助表示感谢,谢谢
尝试使用此,请不要忘记替换根路径!
location /main/ {
root /full/path/from/root/main/;
try_files $uri $uri/ /index.PHP?$args;
}
我在我的主机上的文件夹/ main中设置了wordpress,并使用了下一个设置:
location /main {
index index.PHP;
try_files $uri $uri/ /main/index.PHP?q=$uri;
}
root /path/to/webroot;
原文链接:https://www.f2er.com/nginx/435027.html