我想在WordPress中创建一个SEO友好的URL,我正在WordPress中开发一个网站,它有几个带有自定义PHP脚本的自定义页面。我正在以id=“some text”格式发送数据,并在获取[\'id\']参数时从数据库中匹配此文本。我已经从仪表板中选择了我的设置。
Post name http://domain.com/sample-post/
我当前拥有此URL域。com/父页/子页/?id=“一些文本”
现在我想要这个域名。com/父页/子页/某些文本我已修改我的。htaccess文件这里是我的代码。
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^parent-page/child-page/([a-zA-Z0-9]+)/$ parent-page/child-page/index.php/?id=$1
RewriteRule ^index\\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
我不知道为什么它不起作用