如何在Wordpress中创建自定义路由?

时间:2019-03-26 14:52:13

标签: php wordpress routing routes

我正在这个wordpress网站上工作,并试图将该网站与外部API连接起来。

我需要创建一个自定义路由来读取属性,但是到目前为止,我还没有找到答案。

我要配置的URL是这个:

www.mypage.com/properties/id_description1

它应该指向一个名为(property-single.php)的php模板。

1 个答案:

答案 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/