htaccess redirect subdomain to root domain

后端 未结 2 1204
無奈伤痛
無奈伤痛 2021-01-18 08:00

I want to redirect this subdomain:

http://abc.domain-name.com

to a folder on the root domain that uses the same name:

http:         


        
2条回答
  •  Happy的楠姐
    2021-01-18 08:40

    Try this:

    RewriteEngine on
    RewriteCond %{HTTP_HOST} ^subdomain\.yourdomain\.com
    RewriteRule ^(.*)$ http://www\.yourdomain\.com/subdomain/$1 [L]
    

    (from http://systembash.com/content/simple-redirect-subdomain-to-a-directory/)

提交回复
热议问题