问题描述
- 配置nginx别名,帮忙看看哪里错了?
-
一,不配别名,可以访问location ~ /efront/.+.php { root /hpe/git_root/lms1.0; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; include fastcgi_params; } location /efront { root /hpe/git_root/lms1.0; index index.php; }
二,配了别名的代码
location ~ /eft/.+.php { root /hpe/git_root/lms1.0/efront; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; include fastcgi_params; } location /eft { alias /hpe/git_root/lms1.0/efront; index index.php; }
解决方案
不懂啊,大哥找大神啊,或者QQ之类
解决方案二:
alias时,访问问eft路径下文件时,去efont目录找,你确定对应关系对了吗
解决方案三:
而且你的alias有点不对。efront后面要有/结尾。root可有可无。
解决方案四:
不好意思 ,帮不上你的忙 了,想了好久还是想不出
时间: 2024-10-06 21:35:06