我正在运行nginx v 1.0.4,我们正在尝试执行以下操作:location ~ ^/${rewrite ?^.*$?/index.html ?last;}基本上:如果用户到达默认域http://www.foo.com或http://www.foo.com/将其重定向到http://www.foo.com/index...
我正在运行nginx v 1.0.4,我们正在尝试执行以下操作:
location ~ ^/${
rewrite ?^.*$?/index.html ?last;
}
基本上:如果用户到达默认域http://www.foo.com或http://www.foo.com/将其重定向到http://www.foo.com/index.html
当我将其添加到我的conf文件中时,我得到以下内容:
在/etc/nginx/myconf.conf中启动nginx:nginx:[emerg] unknown指令“”
提前致谢.
解决方法:
您可以在没有位置的情况下使用重写功能
rewrite ^/$ /index.html last;
或永久重定向
rewrite ^/$ /index.html permanent;
用参数重写,例如http://www.foo.com/?param=value – > http://www.foo.com/index.html?param=value
rewrite ^/(\?.*)?$ /index.html$1 permanent;
沃梦达教程
本文标题为:nginx位置修复:重定向到index.html
基础教程推荐
猜你喜欢
- 字节跳动、抖音小程序如何获取授权用户信息 2022-11-02
- jquery.qrcode.js生成二维码并转成图片格式 2022-10-29
- 一文掌握ajax、fetch和axios的区别对比 2023-02-24
- Vue简单到复杂,了解到熟悉 2023-10-08
- Vue自学之路5-vue模版语法(v-text,v-html,v-pre) 2023-10-08
- js 中文汉字转Unicode、Unicode转中文汉字、ASCII转换Unicode、Unicode转换ASCII、中文转换X函数代码 2023-08-08
- vue+element模拟百度搜索(输入建议) 2023-10-08
- Layui如何使用折叠表格,以及默认自动折叠 2022-10-20
- JavaScript字符串转换数字的方法 2023-08-12
- vue笔记 2023-10-08