我无法让我的URL重写在Wordpress中全部工作

时间:2016-10-26 22:10:29

标签: php wordpress .htaccess mod-rewrite url-rewriting

所以基本上我只想简单地将我的网址和网址标题从 domain.com/city/?cityid=manhattan 重写为 domain.com/manhattan 并使我的URL标题在结果中显示为“Manhattan - domain.com” 另外,对于我的类别+城市页面,我想将网址从 domain.com/ads/?cityid=manhattan&ad_category=dogs 更改为 domain.com/manhattan/dogs 和我的网址标题为“Manhattan Dogs - domain.com” 几个月来我一直没有成功进行wordpress重写。 我在function.php和htaccess中使用以下代码。

Function.php

function custom_rewrite_basic() {
global $post;


add_rewrite_rule('^/([^/]*)/','index.php?  
cityid=$matches[1]&page=1205','top'); 
flush_rewrite_rules();




}

add_action('init', 'custom_rewrite_basic');

的.htaccess

RewriteRule ^(.*)$ index.php?cityid=$1&page=1205&%{QUERY_STRING}

如何解决此功能?在wordpress中似乎很难。 任何人都可以帮忙!

0 个答案:

没有答案