0

我有看起来像的分页 URLhttp://www.domain.com/tag/apple/page/1/

如果诸如 URLhttp://www.domain.com/tag/apple/page/*2/不存在或page/2不存在,我需要代码将其重定向到诸如http://www.domain.com/tag/apple/主标记页面之类的页面。

我目前有以下代码:

RewriteCond %{HTTP_HOST} !^http://www.domain.com/tag/([0-9a-zA-Z]*)/page/([0-9]*)/$
RewriteRule (.*) http://www.domain.com/tag/$1/ [R=301,L]

在此代码中,如果 URL 不存在,它会重定向到主标记页面,但它不起作用。

有没有人有关于如何解决这个问题的提示或解决方案?

4

1 回答 1

2

如果我明白你在说什么,那么你是说你有一个重写的 URL 列表(使用mod_rewrite);其中一些存在,一些不存在。对于那些存在的,您希望它们被重定向到新的页面位置吗?

简短的回答是,你不能在htaccess. 当您使用 时mod_rewrite,您重写的页面名称将传递给控制器​​文件,该文件将重写的 URL 转换为它应该显示的页面/内容。

我只是假设您使用的是 PHP,如果是这样,大多数 PHP 框架(CakePHP、Drupal、LithiumPHP 等)可以为您解决这个问题并处理不存在文件的自定义重定向。如果您有自定义编写的应用程序,则需要在 PHP 网站内而不是在.htaccess文件中处理重定向。

一个非常简单的例子是:

<?php
function getTag($url) {
    if (preg_match('|/tag/([0-9a-zA-Z]*)/|', $url, $match)) {
        return $match[1];
    }
    return '';
}

function validateUrl($url) {
    if (preg_match('|/tag/([0-9a-zA-Z]*)/page/([0-9]*)/|', $url, $match)) {
        $tag = $match[1];
        $page = $match[2];
        $isValid = // your code that checks if it's a URL/page that exists
        return $isValid;
    }
    return false;
}

if (!validateUrl($_SERVER['REQUEST_URI'])) {
    $tag = getTag($_SERVER['REQUEST_URI']);
    header ('HTTP/1.1 301 Moved Permanently');
    header('Location /tag/' . $tag . '/');
    die();
}

?>
于 2012-10-02T12:58:40.540 回答