以下网址重写是否有任何理由导致从https而不是http请求资源?我正在尝试重写的当前站点不是通过https请求资源。
在.htaccess
RewriteEngine On
RewriteCond %{HTTP_HOST} ^olduglysubdomain\.domain\.com
RewriteRule ^(.*) http://newawesomesubdomain.domain.com/$1 [P]
正确加载html,但图片,css和JavaScript都是https://newawesomesubdomain.domain.com/
。我可以通过.htaccess强制它到http,还是在其他地方我应该看?