我有一个名为 CMS {example.com/cms}的子目录。我需要将其重定向到 example.com/blog 并使用名称blog来屏蔽它。执行此操作 example.com/cms/page1 时,还应使用 example.com/blog/page1 重定向并屏蔽。我需要.htaccess代码来执行此操作。我已经尝试了所有可用的代码,没有任何作用。
我试过的代码是
RewriteRule ^ blog /(.+)$ / cms / $ 1 [L,NC]
答案 0 :(得分:0)
您可以在 DOCUMENT_ROOT/.htaccess
文件:
RewriteEngine On
RewriteBase /
RewriteRule ^cms(/.*)?$ blog$1 [L,NC]