1

我需要在 nginx 上重写大量的 URL(大约 250 个)。

从:http://xyzwiki.de/wiki/index.php?title=Article1

至:http://wiki.zyx.de/wiki/AlternativeNameForArcticle1

显然,源确实使用经典 url 以及个别文章的其他名称,我有一个包含所有源和目的地的表。

我尝试使用基本的重定向示例,但是我没有让它工作。我认为原因可能是源 URL 使用 URL 参数 - 但我没有找到解决方案。

所以我需要一个映射,告诉 nginx 一堆源 URL 和它们各自的重写目标。

4

1 回答 1

0

就个人而言,我将使用auto_prepend_file工具在 php 中处理这个问题。

有了这个,如果保存在服务器上的某个地方并且 auto_prepend_file 设置为加载它,下面的代码块将为每个 php 调用运行。

if ($_SERVER['SCRIPT_NAME'] == '/index.php') {
    // only proceed if this is the root index.php file 
    $title = $_GET['title'];
    $urlMap = array (
            'article1' => 'alternative1',
            'article2' => 'alternative2',
            'article3' => 'alternative3',
            ...
            'article250' => 'alternative250'
    );

    if (array_key_exists($title, $urlMap)) {
        // redirect to alternative url
        header("HTTP/1.1 301 Moved Permanently");
        header("Location: http://wiki.zyx.de/wiki/" . $urlMap[$title]);
        exit;
    } else {
        // unset vars and continue otherwise
        unset($title);
        unset($urlMap); 
    }
}
于 2012-10-08T17:49:49.497 回答