我有WP网站,我有这个htaccess:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^mypage/ /z____articles/mypage/ [R=301,L]
</IfModule>
这使我的浏览器重定向,但我不想重定向,我想要的页面:
site.com/mypage/
显示了
的内容site.com/z____articles/mypage/
我尝试使用这些标记[NC,L]
或[L]
,但它们都不起作用..