我在一个目录中有两个网站。
www.example.com(这是根域)
www.example.com/portfolio/(安装了wordpress的投资组合)
现在,我们必须将www.example.com/portfolio/client的内容显示到根域www.example.com/client url。
我尝试了
RewriteEngine on
RewriteRule %{REQUEST_URI} ^/portfolio/.*
RewriteRule portfolio/(.*)$ /$1 [R=301,L]
但是不幸的是,它无法正常工作,我对.htaccess没有任何了解。
我们期望的是
当有人点击www.example.com/portfolio/client
时,页面应重定向到www.example.com/client
,但内容必须为www.example.com/portfolio/client page
。