Quick htaccess redirect from subfolder?

spaceboos

Junior Member
Joined
Sep 19, 2015
Messages
121
Reaction score
12
Could someone please tell me how to use .htaccess to redirect the following:

mydomain.com/subfolder to
anydomain.com

I am sure this is a stupid question but I have been looking for hours and haven't found an answer yet.
 
Try this create .htaccess file in subfolder and paste the below code into it.
Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) http://anydomain.com/$1 [R=301,L]
 
its should be on root folder eg. /home/user/public_html/.htaccess
 
Code:
## redirect blog to /blog
RewriteCond %{HTTP_HOST} www.somesite/blog/
RewriteCond %{REQUEST_URI} !^/blog
RewriteRule ^(.*)$ blog/$1 [L]
 
Back
Top