开发者

Rewrite sub-domain to directory

I'd like to map subdomain.example.com to www.example.com/subdomain using an internal URL rewrite that looks at the 开发者_开发知识库host name and simply forwards any request to a subdirectory with the same name as the subdomain.

Thanks for your help


Using .htaccess:

RewriteCond %{HTTP_HOST} !^www\.yourdomain\.com 
RewriteRule (.*) http://www.yourdomain.com/$1 [R=301,L]


See the following for subdomain part if you are on Apache:

  1. You need to create a wildcard domain on your DNS server *.website.com
  2. Then in your vhost container you will need to specify the wildcard aswell *.website.com - This is done in the ServerAlias http://httpd.apache.org/docs/1.3/mod/core.html#serveralias

Then you will want to use a rewrite rule similar to the one posted by pritaeas or get the domain with you PHP script and redirect based upon it.

$url = substr($_SERVER['SERVER_NAME'], 0, strpos($_SERVER['SERVER_NAME'], '.'));
header("Location: http://mydomain.com/$url");
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜