我在WordPress中添加了一个页面,我想将该页面的url重写为更方便用户的url。
https://localhost/wordpress/page?name=name+of+the+page
收件人:
https://localhost/wordpress/page/name+of+the+page
如果试图在我的主题目录中创建htaccess文件
function custom_rewrite_basic() {
add_rewrite_rule(\'^page/([^/]*)/?\', \'index.php\', \'top\');
}
add_action(\'init\', \'custom_rewrite_basic\');
我试图将其重定向到我的索引页,以查看它是否与此链接一起工作:
https://localhost/wordpress/page/some+random+string
但它会显示未找到的页面,请帮助