Magento htaccess 重写和重定向

发布于 2024-11-07 18:08:07 字数 749 浏览 0 评论 0原文

在基于 Magento 的电子商务网站上,我尝试从 URL 中删除 index.php 以及将非 www 301 重定向到 www。

默认 URL:www.example.com/index.php/super-cool-product.html

所需产品 URL:www.example.com/super-cool-product.html

另外 301 将非 www 重定向到 www:
example.com/super-cool-product.html
至:
www.example.com/super-cool-product.html

以及:
www.example.com/index.html
至:
www.example.com

这是我目前拥有的:

RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301]

RewriteCond %{THE_REQUEST} ^.*/index.php
RewriteRule ^(.*)index.php$ http://www.rejuvahealth.com/$1 [R=301,NC,L]

RewriteCond %{THE_REQUEST} ^.*/index.html
RewriteRule ^(.*)index.html$ http://www.rejuvahealth.com/$1 [R=301,NC,L]

On a Magento based ecommerce site I am trying to remove index.php from URLs as well as 301 redirect non-www to www.

Default URL: www.example.com/index.php/super-cool-product.html

Desired Product URL: www.example.com/super-cool-product.html

Also 301 redirecting non-www to www:
example.com/super-cool-product.html
to:
www.example.com/super-cool-product.html

As well as:
www.example.com/index.html
to:
www.example.com

This is what I currently have:

RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301]

RewriteCond %{THE_REQUEST} ^.*/index.php
RewriteRule ^(.*)index.php$ http://www.rejuvahealth.com/$1 [R=301,NC,L]

RewriteCond %{THE_REQUEST} ^.*/index.html
RewriteRule ^(.*)index.html$ http://www.rejuvahealth.com/$1 [R=301,NC,L]

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

べ繥欢鉨o。 2024-11-14 18:08:07

301重定向index.html:

Options +FollowSymLinks
RewriteEngine on
redirect 301 /index.html http://www.example.co.uk/

如果您正确配置基本URL,Magento应该自动重定向到www。版本。

对于index.php重写,请转到配置>;网页>使用“Web 服务器重写”并更改为“是”。

现在打开您的 htaccess 并将此行:更改

#RewriteBase /magento/

为:

RewriteBase /

假设您的 Magento 文件夹位于根目录上。不过,使用网络重写时要小心,并确保在进行任何更改之前进行备份。

To 301 redirect index.html:

Options +FollowSymLinks
RewriteEngine on
redirect 301 /index.html http://www.example.co.uk/

If you configure your Base URLs correctly, Magento should automatically redirect to the www. version.

For index.php rewrites, go to Configuration > Web > Use Web Server Rewrites and change to 'Yes'.

Now open your htaccess and change this line:

#RewriteBase /magento/

to this:

RewriteBase /

Assuming that your Magento folder is on the root. Be careful when using web rewrites though and ensure you back up before making any changes.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文