【问题标题】:Magento + htaccess + mod_rewrite: Forcing trailing slash & Force lower case URLMagento + htaccess + mod_rewrite:强制尾部斜杠和强制小写 URL
【发布时间】:2012-07-15 19:53:59
【问题描述】:

我正在尝试对我的 Magento 商店的 htaccess 文件进行一些更改,以在所有不是文件且不是 .html(产品页面)的 URL 的末尾强制使用斜杠。同时,我也试图在 URL 中强制使用小写字母。这两者都是出于 SEO 原因,因为指向 /category、/Category 和 /category/ 的链接都被 Google 视为不同的页面。

下面是 .htaccess 的重写部分:

<IfModule mod_rewrite.c>

Options +FollowSymLinks
RewriteEngine on

RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteCond %{REQUEST_URI} !^/(media|skin|js)/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l

RewriteRule .* index.php [L]

</IfModule>

我看到了这两个 sn-ps,第一个用于强制小写,第二个用于斜杠:

RewriteMap  lc int:tolower
RewriteCond %{REQUEST_URI} [A-Z]
RewriteRule (.*) ${lc:$1} [R=301,L]

还有……

RewriteCond %{REQUEST_URI} !(.*)/$
RewriteRule ^(.*)$ http://domain.com/$1/ [L,R=301]

但是我不知道如何或在哪里将这些插入到现有的重写中,所以一切都按预期工作。

【问题讨论】:

  • ${lc:} 重写映射要求您在服务器配置或虚拟主机配置中进行设置。

标签: apache .htaccess magento mod-rewrite


【解决方案1】:

把它放在你的 .htaccess 中:

Options +FollowSymLinks
RewriteEngine on
RewriteBase /

RewriteCond %{REQUEST_URI} [A-Z]
RewriteRule (.*) ${lc:$1} [L,R=301]

RewriteCond %{REQUEST_URI} !(.*)/$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !^index.php
RewriteCond %{REQUEST_URI} !\.(html|jpg|png|gif)$
RewriteRule ^(.*)$ $1/ [L,R=301]

RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteCond %{REQUEST_URI} !^/(media|skin|js)/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l

RewriteRule .* index.php [L]

</IfModule>

并将其放入您的 vhost 配置或 httpd.conf:

RewriteMap  lc int:tolower

【讨论】:

  • 这会导致出现以下错误页面:Forbidden You don't have permission to access /var/www/html/page/ on this server.
  • 试试我刚刚添加的 RewriteBase 行?确保您的目录和文档根目录在配置中正确定义。
  • 将任何请求定向到 /index.php/
  • 添加了 index.php 的例外 :)
  • 这行得通,除了它在 .html 页面和一些图像上加上斜杠,导致图像不显示。
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2023-03-04
  • 2022-07-22
  • 2011-12-08
  • 2022-01-13
  • 2012-12-26
  • 2016-04-30
相关资源
最近更新 更多