0

如何在 magento 中使用 htaccess 进行重定向,我需要将旧 url 链接重定向到新文章 cms 页面我试图将重定向链接放在根 htaccess 但不做任何事情

 Options +FollowSymLinks
 RewriteEngine on
 Redirect 301 https://www.website.com/articles?article=153 https://www.website.com/history-of-starbucks 
 RewriteBase /

请,任何帮助将不胜感激

先感谢您。杰鲁斯

4

1 回答 1

1

尝试这样的事情,而不是您问题中的规则集:

Options +FollowSymlinks -MultiViews
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI}    !/history-of-starbucks      [NC]
RewriteCond %{QUERY_STRING}   ^article=153/?              [NC]
RewriteRule ^articles     /history-of-starbucks?  [R=301,NC,L]
于 2013-03-19T15:10:41.263 回答