Centos服务器的nginx+php+mysql配置,结果是404,请老师指点一下
来源:14-9 CORS跨域的概念与TP5的解决方案
IT丶杰
2017-11-17
老师,我的在线服务器指定的是
location / {
root /root/www/zerg/public;
index index.php index.html index.htm;
}
写回答
3回答
-
runzx
2017-11-19
location / { index index.html index.htm index.php ; autoindex off; try_files $uri $uri/ /index.php$uri$is_args$args; }
改成这就OK。
052017-11-21 -
IT丶杰
提问者
2017-11-17
public下面本来就有index.php,而且可以打开,不过打开其他的路由就不可以了
012017-11-17 -
7七月
2017-11-17
试试加一个index.php,如果可以,那么就需要在nginx里做URL重写隐藏index.php。
00
相似问题