我正在这个wordpress网站上工作,并试图将该网站与外部API连接起来。
我需要创建一个自定义路由来读取属性,但是到目前为止,我还没有找到答案。
我要配置的URL是这个:
www.mypage.com/properties/id_description1
它应该指向一个名为(property-single.php)的php模板。
答案 0 :(得分:0)
您可以使用.htaccess
RewriteEngine On
# Rule for the redirect
RewriteRule ^properties/id_description1$ property-single.php [QSA,L,NC]
您还可以使用动态指针,例如:
RewriteRule ^properties/id/([0-9]+)$ property-single.php?id=$1 [QSA,L,NC]
此工具可能会帮助您:https://www.htaccessredirect.net/