最好使用WP\\u重写。
add_action(\'page_rewrite_rules\',\'my_page_rules\');
function my_page_rules($rules){
$pageslug = \'sample-page\';
$rules[\'([^/]+)/?$\'] = \'index.php?pagename=\'$pageslug\'/$matches[1]\';
return $rules;
}
add_filter( \'page_link\', \'sub_page_link\');
function sub_page_link(){
// preg_replace here
}
我找到了一个
premium plugin 它使用相同的机制将页面转换为子域,它使用重写规则和配置的服务器通配符。
希望对您有所帮助!