5

我在重定向通配符子域和处理内部 URL 缩短器时遇到问题。

假设我的应用中有一个内部 URL 缩短器

example.com/b/ABCDE

那将翻译

example.com/book/12345678-the-book-name

引用的脚本/b/(我使用可以处理 URL 规则的 PHP 框架)会将短 IDABCDE转换为书的真实 ID 12345678(以及标题“书名”),然后将其重定向到书的永久 URLexample.com/book/12345678-the-book-name

因此,每次我在公告板、微博网站或海报或名片等物理媒体上传播有关书籍的链接时,我都会使用短链接 (the example.com/b/ABCDE) 而不是永久链接 ( example.com/book/12345678-the-book-name)。

www.example.com接下来,我需要在维护请求 URI 的同时将所有通配符子域重定向到主域 ( ),例如

http://random.example.com/book/11111111-some-book -> http://www.example.com/book/11111111-some-book
http://123456.example.com/book/22222222-another-book -> http://www.example.com/book/22222222-another-book
http://abcdefg.example.com/book/33333333-another-book-again -> http://www.example.com/book/33333333-another-book-again

在我使用的所有规则之后添加以下规则

<VirtualHost *:80>
ServerName example.com
ServerAlias *.example.com
RewriteEngine on

RewriteCond %{HTTP_HOST} !^www.example.com [NC]
RewriteRule ^/(.*)$ http://www.example.com/$1 [R=301]
</VirtualHost>

因此,带有 example.com 域且没有前缀的 url 如下所示

http://example.com/book/11111111-some-book

将转化为

http://www.example.com/book/11111111-some-book

而且,另一个后果是,如果内部 URL 缩短器使用没有前缀的普通域,则需要两次重定向才能解析。例如,

http://example.com/b/ABCDE

将首先被重定向到

http://www.example.com/b/ABCDE

然后被重定向到

http://www.example.com/book/12345678-the-book-name

实际上,我不介意两次重定向。但是我的 SEO 顾问说两次重定向对我网站的 SEO 不利。(我仍然不知道为什么)

所以我尝试将最后一条规则更改为以下

<VirtualHost *:80>
ServerName example.com
ServerAlias *.example.com
RewriteEngine on

RewriteCond %{HTTP_HOST} ^example.com [NC]
RewriteCond %{REQUEST_URI} ^/b/(.*)$ 
RewriteRule . index.php [L]

RewriteCond %{HTTP_HOST} !^www.example.com [NC]
RewriteRule ^/(.*)$ http://www.example.com/$1 [R=301]
</VirtualHost>

我不太擅长配置 Apache,但是当我在http://htaccess.madewithlove.be/中模拟上述规则时,它可以工作。但是当我将它应用到我的服务器时,它给了我400 Bad Requestexample.com/p/ABCDE.

所以,我的问题是

  1. 我的 SEO 顾问对他的论点是否正确?是否有任何解释可以支持他或是否有相反的论点?
  2. 为什么服务器给出400 Bad Request
  3. 如何修复重定向?我想维护短 URL(example.com/b/ABCDE不带www前缀),但仍处于一个重定向中。
4

1 回答 1

3

您是 SEO 顾问吗?

就像 SEO 一样,答案涉及一些猜测和假设,但他可能是对的。

当您重定向页面时,您告诉爬虫忘记初始页面并稍后返回以索引目标页面,这会在您的页面首次介绍给世界和您的页面在搜索中的实际出现之间引入延迟结果。两次重定向意味着您将延迟加倍。根据搜索引擎的“情绪”,这可能会导致您的 SEO 出现显着回归(或者在搜索引擎对重定向进行排序时,您的索引 URL 会出现一些混乱)。

为什么会收到 400 响应

如果您查看RewriteRule的文档,请输入Inside per-server configuration

给定规则 ->结果替换
^/somepath(.*) --> otherpath$1 :无效,不支持
^/somepath(.*) --> /otherpath$1/otherpath/pathinfo

这意味着,在 vhost conf 中,您必须为您的替代提供一个绝对路径(将返回给 Apache 的最后一个,以前的可以是您喜欢的任何内容)。要解决 400 错误:

RewriteRule . /index.php [L]

如何修复重定向

这将取决于您的 index.php 如何构建其重定向,但设置

ServerName www.example.com
UseCanonicalName On

将设置$_SERVER["SERVER_NAME"]www.example.com并应导致指向规范域的 URL。

潜在配置

<VirtualHost *:80>
    ServerName www.example.com
    ServerAlias *.example.com example.com

    UseCanonicalName On
    RewriteEngine on

    #set the document root
    DocumentRoot /path/to/the/app 

    # if something goes wrong, setup logs to track what happens
    # comment these lines when you're done
    ErrorLog /a/path/to/a/log/file

    RewriteLogLevel 5
    RewriteLog /a/path/to/another/log/file

    # I simplified the conditions, those are equivalent to your rules
    # a RewriteRule tries to match against %{REQUEST_URI}
    RewriteCond %{HTTP_HOST} ^example\.com [NC]
    RewriteRule ^/b/ /index.php [L] 

    RewriteCond %{HTTP_HOST} !^www\.example\.com [NC]
    RewriteRule ^/(.*)$ http://www.example.com/$1 [R=301]
</VirtualHost>
于 2012-06-13T08:58:43.157 回答