在使用Thinkphp后发现使用官方的伪静态规则后,手工/index.php/wxapp/11.html
,这样也是能正常打开的,为了消除index.php
把链接统一,可以把/index.php/wxapp/11.html
301重定向到/wxapp/11.html
规则如下:
#比如:https://www.uihtm.com/index.php/wxapp/,重写向到https://www.uihtm.com/wxapp/
# 删除 index.php$
if ($request_uri ~* "^(.*/)index\.php$") {
return 301 $1;
}
# 删除每一级 index.php
if ($request_uri ~* "^(.*/)index\.php(/?)(.*)") {
return 301 $1$3;
}