如何在xampp localhost中使用PHP和htaccess创建动态子域 我在mysql中存储了子域名,但我想在窗口平台的xampp localhost中检查如下:
装置 http://example.com/subdomain?=alabaster
我希望这样 http://alabaster.example.com 通过本地主机xampp中的php mysql 你会一步一步解释吗如何运行localhost xampp窗口
推进thanx
答案 0 :(得分:0)
您可以尝试以下代码:
RewriteEngine On
RewriteBase /
RewriteCond %{QUERY_STRING} ^subdomain=([^&]+)$
RewriteRule ^$ http://%1.example.com? [L,R=301]
这些链接可能会对您有所帮助: