按URL分段获取自定义帖子 时间:2016-05-12 作者:Trang 请就我的这种情况给我一个建议。我有一个自定义的帖子类型"house".它具有两种自定义分类法:"region" 和"status".我想走出所有的“房子”"for rent" 和位于"istanbul" 属于"turkey"在浏览器中键入此URL时:hostname.com/for-rent/turkey/istanbul谢谢 1 个回复 SO网友:Tobias Beuving 您可以在htaccess中使用重写规则:/出租/土耳其/伊斯坦布尔RewriteRule ^for-rent/([^/]*)/([^/]*)$ yourpage.php?country=$1&city=$2 [L] 而不是在你的页面上。php:$country = $_REQUEST[\'country\']; $city = $_REQUEST[\'city\']; 文章导航