我有这个 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 中删除端口。
谁能帮我这个?