我无法弄清楚为什么会发生这种错误:“内部重定向到”/index.html“时重写或内部重定向循环”我找到了similar post并根据我读到的内容尝试了各种建议,但无济于事.这是我的nginx配置.任何帮助,将不胜感激!server {...
我无法弄清楚为什么会发生这种错误:“内部重定向到”/index.html“时重写或内部重定向循环”
我找到了similar post并根据我读到的内容尝试了各种建议,但无济于事.
这是我的nginx配置.任何帮助,将不胜感激!
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
root /usr/share/nginx/html/public;
index index.php;
# Make site accessible from http://localhost/
server_name ourdomain.com;
location @handler {
rewrite / /index.php
}
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location ~ .php${
fastcgi_split_path_info ^(.+.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
# add the following line in for added security.
try_files $uri =403;
}
}
解决方法:
好的解决了.问题是
location @handler {
rewrite / /index.php
}
删除它,一切都很好.
沃梦达教程
本文标题为:php – nginx – 重写或内部重定向循环,同时内部重定向到“/index.html”
猜你喜欢
- 妙用Ajax技术实现局部刷新商品数量和总价实例代码 2022-12-28
- Vue中如何实现动态路由的示例代码 2023-07-10
- 【vue】v-for倒序显示/JSON数据倒序 2023-10-08
- Vue.js从入门到精通第四天 2023-10-08
- Ajax实现动态显示并操作表信息的方法 2023-02-23
- Ajax的原生实现关于MIME类型的使用方法 2023-02-15
- 使用 IntraWeb (38) - TIWAppForm、TIWForm、TIWBaseHTMLForm、TIWBaseForm 2023-10-26
- vue 后台返回的一维数组怎样变成二维数组 2023-10-08
- 聊一聊数据请求中Ajax、Fetch及Axios的区别 2023-02-24
- Ajax 实现加载进度条 2023-01-26