0
我目前正在使用wordpress。網址是這樣的
example.com/dashboard-form/?din=random12。
我想要的網址是這樣
example.com/dashboard-form/random。
在此先感謝
我目前正在使用wordpress。網址是這樣的
example.com/dashboard-form/?din=random12。
我想要的網址是這樣
example.com/dashboard-form/random。
在此先感謝
要在INIT被添加:
要註冊您的自定義變量(在這個問題 '喧囂')
add_rewrite_tag('%mycustomvar%','([^&]+)');
要創建一個重寫規則:
add_rewrite_rule('^product/([0-9]{1,})/?','index.php?p=4&mycustomvar=$matches[1]','top')
欲瞭解更多請參閱鏈接如下:
嘗試添加重寫規則,並讓我知道如果任何查詢。
主動重寫引擎,有可能是一個模塊,你可以重寫url – Fky
你可以這樣做與url重寫內置到wordpress http://www.hongkiat.com/blog/wordpress-url-rewrite/ –