我当前的 page-url 如下所示,
http://localhost/testWP/?mode=home
但我想将网址设为如下:
http://localhost/testWP/mode/home
.htaccess
- 文件以将其变为现实?答案 0 :(得分:0)
尝试将这些规则添加到您的文档根目录:
RewriteEngine On
RewriteCond %{THE_REQUEST} \ /+testWP/?\?mode=([^&\ ]+)
RewriteRule ^ /testWP/mode/%1? [L,R]
RewriteRule ^testWP/mode/(.+)$ /testWP/?mode=$1 [L]
请注意,如果您更改了网址(在您的问题中似乎是/testWP/
),则需要调整规则以反映您通过将testWP
替换为任何内容而做出的任何更改合适的。