我通常不會在這裏發帖,並嘗試自己弄清楚事情,但我在我的智慧結束。WordPress .htaccess重定向
我試圖執行WordPress的重定向,以便請求:
/property/123-my-unique-uri-here
...被轉發到一個叫/property-details.php
文件,但仍然URL在地址欄中相同。
這是我已經試過:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase/
RewriteRule ^property/(.*)$ /wp-content/themes/Divi/property-details.php?uri=$1 [QSA,L]
</IfModule>
然而,當我訪問我剛剛轉發到主頁的URL /property/123-my-unique-uri-here
。
如果有人有任何想法,我會永遠感激!
必須有其他規則,比如標準WP重寫index.php,也許更多。訂單也是相關的。 –
使用WordPress的重寫規則功能https://codex.wordpress.org/Rewrite_API/add_rewrite_rule – TheFallen
對於ref,如果你沒有得到你想要的答案,還有一個專門的wordpress.stackexchange.com網站可能是能夠幫助你。 – Simba