标签: apache .htaccess url-redirection
我需要将www.mydomain.com/folderA/重定向到www.mydomain.com/folderB/,同时在网址中保留folderA。 www.mydomain.com/folderA/.htaccess文件应该如何编码?
www.mydomain.com/folderA/
www.mydomain.com/folderB/
www.mydomain.com/folderA/.htaccess
答案 0 :(得分:0)
尝试:
RewriteEngine On RewriteRule ^(.*)$ /folderB/$1 [NC,L]