标签: php .htaccess
我需要将subdomain之类的anytext.bday.life个请求重定向到bday.life/index.php
subdomain
anytext.bday.life
bday.life/index.php
我在htaccess文件上尝试了以下代码,但它不起作用。
htaccess
有没有解决方案?
RewriteEngine on RewriteCond %{HTTP_HOST} ^(.*)\.bday\.life RewriteRule ^(.*)$ http://bday.life/index.php?name=$1 [L,NC,QSA]