我知道如何更改PHP
中的網址,但我不是WordPress的專家。如何在wordpress中使用.htaccess更改GET變量以獲得漂亮的URL
我有這個網址:
domain.com/parent-page/child-page-here/?id=SomeText
,我想這
domain.com/parent-page/child-page-here/Some文字:
我改變.htaccess
但它不在這裏工作是我的.htaccess
代碼
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
RewriteEngine On
RewriteRule ^parent-page/child-page/([0-9a-zA-Z]+) parent-page/child-page/?id=$1 [NC,L]
我使用的是來自parmalink的post-name。我發送id =「text」中的數據並從自定義頁面$ _GET [''id「]中獲取數據,並將此值發送到數據庫以獲得結果 –
可以請您告訴如何從.htaccess文件更改URL並執行此操作現在RewriteRule^parent-page/child-page /([a-zA-Z0-9 - ] +)/?$ parent-page/child-page/index.php /?id = $ 1 [L]但它不工作 –