Ich brauche es
/module/index.html#/
Konvertieren in
/index#/
Kein Modul vorne
/module/merchant.html#/
/merchant#/
Von mir geschrieben
rewrite ^/module/index.html(.*)$ /index#/;
Direkt 404b
#后面的数据是HTML页面处理的,而不是路由处理的,所以你的重写规则应该是:
#
rewrite ^/module/(.+)\.html$ /$1
就可以了。
你需要做的只是把.html和/module/去掉而已。
.html
/module/
另外,我不知道你是想地址写/module/index.html,来访问/index,还是地址写/index来访问/module/index.html,如果是后者的话,就不是上面那个了,应该是:
/module/index.html
/index
rewrite ^/(.+)$ /module/$1.html
不好意思,服务端拿不到 URL 的 # 后面的数据, 这部分就只能在前端处理。
URL
#
后面的数据是HTML页面处理的,而不是路由处理的,所以你的重写规则应该是:就可以了。
你需要做的只是把
.html
和/module/
去掉而已。另外,我不知道你是想地址写
/module/index.html
,来访问/index
,还是地址写/index
来访问/module/index.html
,如果是后者的话,就不是上面那个了,应该是:不好意思,服务端拿不到
URL
的#
后面的数据, 这部分就只能在前端处理。