Magento htaccess 重写和重定向
在基于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
301重定向index.html:
如果您正确配置基本URL,Magento应该自动重定向到www。版本。
对于index.php重写,请转到配置>;网页>使用“Web 服务器重写”并更改为“是”。
现在打开您的 htaccess 并将此行:更改
为:
假设您的 Magento 文件夹位于根目录上。不过,使用网络重写时要小心,并确保在进行任何更改之前进行备份。
To 301 redirect index.html:
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:
to this:
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.