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:
- You need to create a wildcard domain on your DNS server *.website.com
- 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");
精彩评论