【发布时间】:2020-07-16 12:47:15
【问题描述】:
我当前的.htaccess 包含以下内容:
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{SERVER_PORT} !^443$
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteRule ^(.*)-p-(.*).html$ product_info.php?products_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-c-(.*).html$ categories.php?cPath=$2&%{QUERY_STRING}
如何添加单个静态规则,以便将 product1-p-123.html 重定向 (301) 到 product2-p-456.html 而不会中断其他传入请求?
【问题讨论】:
标签: regex apache .htaccess redirect mod-rewrite