0

我有这个 htaccess 代码

 <IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} on [AND] 
RewriteCond %{REQUEST_URI} /products-page/bathroom-amenities/nourish-a-spa-line/
RewriteRule (.*) http://%{HTTP_HOST}/bathroom-amenities/286-nourish.html
</IfModule>

这样做是将用户从以下位置重定向:

至:

此代码从 https URL 重定向到 http URL,但要使其正常工作,我需要从结果 URL 中删除端口。

谁能帮我这个?

4

1 回答 1

0

User SERVER_NAME instead of HTTP_HOST

Be careful with the use of UseCanonicalName setting, most likely you want to have it set to Off

于 2013-02-08T19:15:38.217 回答