我正在尝试将我的URLS'从“/ city /?cityid = manhattan”重写为“/ manhattan”。 或者我的网址是从“/ ads /?cityid = manhattan& ad_category = dogs”到“/ manhattan / dogs”。
我正在使用以下代码。
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}
我还需要正确阅读我的网站标题,例如“Manhattan - domain.com”
以及“Manhattan Dogs - domain.com”
我几个月来一直在寻找解决方案,但仍然无法改变它。
有人可以帮忙吗?