提问人:Mithun Deshan 提问时间:11/7/2023 更新时间:11/7/2023 访问量:21
如何从 url 中删除此部分但仍加载页面
How do I remove this part from url but still loading the pages
问:
嗨,最近我正在研究 wordpress,需要更改如下所示的网址,
https://abcd/portfolio/sample=> https://abcd/sample
没有投资组合部分,请注意它不是一个类别,里面有投资组合组和投资组合项目。
答:
0赞
Denis Sinyukov
11/7/2023
#1
您可以在标记之间将以下内容添加到文件中:.htaccess
<IfModule mod_rewrite.c>
RewriteCond %{HTTP_HOST}
RewriteRule ^portfolio/(.*)$ /$1 [R=301,L]
评论