2

我希望如果我的访问者去subdomain.example.com他们会被重定向到anothersubdomain.example.com. 如果他们去那里css.subdomain.example.com,他们会被重定向到css.anothersubdomain.example.com等等。

我尝试了以下正则表达式(使用 preg_match):

尝试1:

if(preg_match('#(([\w\.-]+)\.subdomain|subdomain)\.example\.com#', $_SERVER['SERVER_NAME'], $match)) {
    header('Location: http://'.$match[1].'anothersubdomain.example.com/');
}

如果他们去:subdomain.example.com他们会被重定向到:anothersubdomain.example.com

但是如果他们去:css.subdomain.example.com他们也会被重定向到:subdomain.example.com- 所以那是行不通的

尝试2:

if(preg_match('#([\w\.-]+)\.subdomain\.example\.com#', $_SERVER['SERVER_NAME'], $match)) {
    header('Location: http://'.$match[1].'.anothersubdomain.example.com/');
}

如果他们去:css.subdomain.example.com他们会被重定向到:css.anothersubdomain.example.com

但是如果他们去:subdomain.example.com他们会被重定向到:.subdomain.example.com-并且该 URL 无效,因此此尝试也不起作用。

有人有答案吗?我不想使用 nginx 或 apache 重写。

提前致谢。

4

2 回答 2

3

对我有用

$tests = array(
    'subdomain.example.com' => 'anothersubdomain.example.com',
    'css.subdomain.example.com' => 'css.anothersubdomain.example.com'
);

foreach( $tests as $test => $correct_answer) {
    $result = preg_replace( '#(\w+\.)?subdomain\.example\.com#', '$1anothersubdomain.example.com', $test);
    if( strcmp( $result, $correct_answer) === 0) echo "PASS\n";
}

我所做的是将“第一个”子域的捕获组设为可选。所以,如果你打印出这样的结果:

foreach( $tests as $test => $correct_answer) {
        $result = preg_replace( '#(\w+\.)?subdomain\.example\.com#', '$1anothersubdomain.example.com', $test);
    echo 'Input:    ' . $test . "\n" . 
         'Expected: ' . $correct_answer . "\n" . 
         'Actual  : ' .$result . "\n\n";
}

你会得到输出

Input:    subdomain.example.com
Expected: anothersubdomain.example.com
Actual  : anothersubdomain.example.com

Input:    css.subdomain.example.com
Expected: css.anothersubdomain.example.com
Actual  : css.anothersubdomain.example.com

现在将其应用于您的需求:

if( preg_match( '#(\w+\.)?subdomain\.example\.com#', $_SERVER['SERVER_NAME'], $matches)) {
    echo header( 'Location: http://'. (isset( $matches[1]) ? $matches[1] : '') .'anothersubdomain.example.com/');
}
于 2012-06-25T14:11:18.750 回答
0
if(preg_match('#(\w*\.?)subdomain\.example\.com#', $_SERVER['SERVER_NAME'], $match)) {
    header('Location: http://'.$match[1].'anothersubdomain.example.com/');
}
于 2012-06-25T14:14:16.920 回答