我想用 htaccess 文件重定向不同的子域。一个例子:
网址:http://varying-string.example.com/
重定向.php: <?php echo $_GET['value']; ?>
输出:varying-string
这是我的尝试,但我不工作。
.htaccess
RewriteRule ^.*\.redirect.episch.ch$ redirect.episch.ch/redirect.php?value=$1
我想用 htaccess 文件重定向不同的子域。一个例子:
网址:http://varying-string.example.com/
重定向.php: <?php echo $_GET['value']; ?>
输出:varying-string
这是我的尝试,但我不工作。
.htaccess
RewriteRule ^.*\.redirect.episch.ch$ redirect.episch.ch/redirect.php?value=$1