-1
我期待建立在我的網站.htaccess文件,讓我輸入「username.domain.com」作爲URL並重定向我「http://domain.com/index.php?a=profile&u=username」子域的.htaccess用(PHP)
例如: 「john.domain.com」重定向到「http://domain.com/index.php?a=profile&u=john」
感謝
我期待建立在我的網站.htaccess文件,讓我輸入「username.domain.com」作爲URL並重定向我「http://domain.com/index.php?a=profile&u=username」子域的.htaccess用(PHP)
例如: 「john.domain.com」重定向到「http://domain.com/index.php?a=profile&u=john」
感謝
這不會進入的.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)子域(可能的複製http://stackoverflow.com/questions/586129/create-subdomains-on-the-fly-with-htaccess-php ) –