我无法弄清楚为什么会发生这种错误:“内部重定向到”/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”
基础教程推荐
猜你喜欢
- ubuntu 安装 wkhtmltopdf 的方法 2023-10-29
- html粘性页脚的具体使用 2022-09-21
- javascript中的不等于怎么表示 2022-12-10
- 关于javascript:有没有办法将svg容器塑造成它的内 2022-09-21
- ajax中设置contentType: "application/json"的作用 2023-02-15
- ajax内部值外部调用不了的原因及解决方法 2023-01-20
- HTML表单:选择选项以将数据插入MySQL phpmyadmin数据库 2023-10-27
- vue 学习小结(3)关于‘Splan‘ 2023-10-08
- 元素水平居中方案全集 2022-10-16
- 完美解决ajax跨域请求下parsererror的错误 2023-01-26