regex - How to redirect full domain URL and remove subfolder using htaccess -
how can redirect following in apaches .htaccess file http://example1.com/folder/index.php http://example2.com/index.php?
you can use:
rewriteengine on rewritecond %{http_host} ^(www\.)?siteone\.com$ [nc] rewriterule ^folder(/.*)?$ http://www.sitetwo.com$1 [l,r=301]
Comments
Post a Comment