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

Popular posts from this blog

php - SPIP: From Tag directly to an article -

jquery - isAjaxRequest always return false -

ruby on rails - In a controller spec, how to find a specific tag in the generated view? -