nginx位置修复:重定向到index.html
我正在运行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;