在我现有的 wordpress 站点中,我有一个页面设置,其中包含特定页面的自定义模板文件。根据 slug /at/ 重写此页面的 Wordpress 永久链接
然后我们使用一些额外的变量来获取这个页面上的不同数据
http://websitename.com/at/?h=s3fgh
现在想用 htaccess 将这个 url 重写为这样的东西
http://websitename.com/at/s3fgh
但似乎无法使其工作。目前我试图修改 htaccess 文件但没有首选结果
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteRule ^at/([a-zA-Z0-9_-]+)/?$ /index.php?page_id=113&h=$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
其中 113 等于特定的页面 id