如何将带有GET方法的URL转换为带有Segment作为GET方法的干净URL?

时间:2015-12-10 作者:Roi

我有一个叫profile的页面

我当前查看用户1配置文件的方式

www.sample.com/profile/?id=1
我怎么能把这个做成这样

www.sample.com/profile/1/

1 个回复
SO网友:Roi

我明白了

function rewrite_profile() {
  add_rewrite_rule(\'^profile/([0-9]+)/?\', \'profile/?id=$matches[1]\', \'bottom\');
}
add_action(\'init\', \'rewrite_profile\');
我仍然不知道这是不是正确的方式。

相关推荐

无法在模板函数.php中使用IS_HOME

我试图在标题中加载一个滑块,但只在主页上加载。如果有帮助的话,我正在使用Ultralight模板。我正在尝试(在template functions.php中)执行以下操作:<?php if ( is_page( \'home\' ) ) : ?> dynamic_sidebar( \'Homepage Widget\' ); <?php endif; ?> 但这行不通。现在,通过快速的google,我似乎需要将请