我使用骨干和nginx。我的位置如下:
# will be handled with nginx
location ~* ^/ {
root /Users/myname/Projects/cms/source/cms;
access_log off;
expires max;
}
使用以下网址:
http://localhost/console.html
使用以下网址失败并显示404:
http://localhost/console.html/#login
我尝试了以下内容:
location ~* \/(#)$ {
location ~* \(#)$ {
但是没有用。有什么建议吗?
更新 位置实际上是正确的。感谢mu清理它,它不是我的属性,而是尾随斜线。
答案 0 :(得分:0)
位置实际上是正确的。感谢mu清理它,它不是我的属性,而是尾随斜线。