带有 .htaccess (PHP) 的子域
Posted
技术标签:
【中文标题】带有 .htaccess (PHP) 的子域【英文标题】:Subdomains with .htaccess (PHP) 【发布时间】:2016-10-19 21:25:23 【问题描述】:我希望在我的网站上创建一个 .htaccess 文件,以允许我输入“username.domain.com”作为 url,它会将我重定向到“http://domain.com/index.php?a=profile&u=username”
例如:“john.domain.com”重定向到“http://domain.com/index.php?a=profile&u=john”
谢谢
【问题讨论】:
Create Subdomains on the fly with .htaccess (PHP)的可能重复 【参考方案1】:这不会进入 .htaccess,它会进入你的 httpd.conf 文件。看看这个问题:VirtualHost with wildcard VirtualDocumentRoot
您还需要为 *.example.com 设置通配符 dns 记录以指向您的服务器。在 PHP 中,通配符的 index.php 文件是这样的。
<?php
$domain = "test.example.com";
$domain_parts = explode(".", $domain);
$username = $domain_parts[0];
header("location: http://example.com/".$username);
?>
【讨论】:
以上是关于带有 .htaccess (PHP) 的子域的主要内容,如果未能解决你的问题,请参考以下文章
.htaccess 读取服务器上任何动态子域的内部 index.php