我正在使用wordpress,我有以下网址
http://www.example.com/product/sony-xperia/
我想要实现的是,如果我在基本网址之后添加fr
,如下例所示,我想显示与上面的网址相同的内容。
http://www.example.com/fr/product/sony-xperia/
你能告诉我如何实现这个目标吗?
答案 0 :(得分:1)
我设法做到了。我在我的function.php文件中编写了以下代码,但它确实有效。
function custom_rewrite_basic()
{
add_rewrite_rule('^fr/product/([^/]*)/?', 'index.php?product=$matches[1]', 'top');
}
add_action('init', 'custom_rewrite_basic');