我需要在我的nginx服务器上的Serverblock中创建一个重定向。 我想使用已经用于其他重定向的相同代码:
location /text {
rewrite ^/.* http://www.domain.com/target permanent;
}
这很好用!
但此代码无法使用特定链接
http://www.domain.com/#text/text
location /#text/text {
rewrite ^/.* http://www.domain.com/target permanent;
}
我相信这是因为#符号,但我的问题是我需要带#符号的确切网址名称。有没有办法取消注释#符号,还是我需要采用完全不同的方式?