web-dev-qa-db-ja.com

混合コンテンツページ:安全でないスタイルシートエラーをリクエストしました

私はそれに取り組んでいるウェブサイトを持っています。 http://プロトコルでページを開くと、すべてが正しくロードされますが、httpsプロトコルでページをロードしようとすると、CSSとjavascriptファイルなしでページがロードされます。
コンソールには次のエラーが表示されます。

混合コンテンツ:「 https://www.example.com/index.php?main_page=login 」のページはHTTPS経由でロードされましたが、安全でないスタイルシート「 http:/ /www.example.com/site_map.html '。このリクエストはブロックされました。コンテンツはHTTPS経由で提供する必要があります。

問題は、ブラウザーがhttpsプロトコルで要求したときにcssファイルを読み込めないことだと考えました。
問題はhtaccessファイルにあります。これは、削除したときにcssファイルが正しくロードされたためです。

このようなURLでhttpsを使用してブラウザに読み込まれたページとcssファイル

<link rel="stylesheet" type="text/css" href="https://www.example.com/includes/templates/classic/css/style1.css">
<link rel="stylesheet" type="text/css" href="https://www.example.com/includes/templates/classic/css/style2.css">

ブラウザがcssファイルを読み込もうとすると、リダイレクトされます

http://www.example.com/site_map.html  

Htaccessでhttpsが特定のフォルダーのcssファイルとjsファイルを開くことを許可するにはどうすればよいですか?

ありがとう

[〜#〜] update [〜#〜]htaccessファイルの内容

RewriteEngine On
RewriteCond %{SERVER_PORT} ^443$
RewriteRule (.*) http://www.example.com/$1 
###############################################################################
# Common directives
###############################################################################
# NOTE: Replace /shop/ with the relative web path of your catalog in the "Rewrite Base" line below:

Options +FollowSymLinks
RewriteEngine on

RewriteCond %{HTTP_Host} ^example\.com$ [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [R=301,L]

RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.php\ HTTP/
RewriteRule ^index\.php$ http://www.example.com/ [R=301,L]

#RewriteBase /

###############################################################################
# Start Ultimate SEO URLs
###############################################################################

# Original (unchanged) URL formats
RewriteRule ^(.*)-p-([0-9]+)(.*)$ index\.php?main_page=product_info&products_id=$2&%{QUERY_STRING} [L]
RewriteRule ^(.*)-c-(.*)-p(.*)\.html$ /index.php?main_page=$4&cPath=$2&sort=$5&page=$3
RewriteRule ^(.*)-c-([0-9_]+)(.*)$ index\.php?main_page=index&cPath=$2&%{QUERY_STRING} [L]
RewriteRule ^(.*)-ez-(.*).html$ index.php?main_page=page&id=$2 [L]

# All other pages
# Don't rewrite real files or directories
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index\.php?main_page=$1&%{QUERY_STRING} [L]


# Block out any script trying to base64_encode data within the URL.
RewriteCond %{QUERY_STRING} base64_encode[^(]*\([^)]*\) [OR]
# Block out any script that includes a <script> tag in URL.
RewriteCond %{QUERY_STRING} (<|%3C)([^s]*s)+cript.*(>|%3E) [NC,OR]
# Block out any script trying to set a PHP GLOBALS variable via URL.
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
# Block out any script trying to modify a _REQUEST variable via URL.
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
RewriteRule   index.html$  index.php [QSA] 


# 480 weeks
<FilesMatch "\.(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf)$">
Header set Cache-Control "max-age=290304000, public"
</FilesMatch>

# 2 DAYS
<FilesMatch "\.(xml|txt)$">
Header set Cache-Control "max-age=172800, public, must-revalidate"
</FilesMatch>

# 2 HOURS
<FilesMatch "\.(html|htm)$">
Header set Cache-Control "max-age=7200, must-revalidate"
</FilesMatch>
# compress text, html, javascript, css, xml:
AddOutputFilterByType DEFLATE text/plain
AddOutputFilterByType DEFLATE text/html
AddOutputFilterByType DEFLATE text/xml
AddOutputFilterByType DEFLATE text/css
AddOutputFilterByType DEFLATE application/xml
AddOutputFilterByType DEFLATE application/xhtml+xml
AddOutputFilterByType DEFLATE application/rss+xml
AddOutputFilterByType DEFLATE application/javascript
AddOutputFilterByType DEFLATE application/x-javascript

RewriteEngine on
RewriteBase /

ErrorDocument 404 /index.php
RewriteRule   index.html$  index.php [QSA]
25
Karim Harazin

問題は次のとおりです。

RewriteCond %{SERVER_PORT} ^443$
RewriteRule (.*) http://www.example.com/$1 

SSL要求を許可しません(HTTPS要求には443ポート番号が使用されます)。これらの行を削除してみてください。

7
andale

HTTPS経由でCSSなどを提供できる場合、最善の解決策は se //スキームとして アセットURLの場合。

つまり、「protocolと呼ばれる)同じスキームを親ドキュメントとして使用する」、つまり、ページでhttpsを使用する場合はhttpsを使用します。例えば:

<link rel="stylesheet" href="//mysite.com/styles.css">
<script src="//mysite.com/app.js"></script>
14
joews

ほとんどの場合、あなたのHTMLコードの中には次のようなものがあります

<link href="http://someSite.com/css/someStyle.css" rel="stylesheet" type="text/css" />

これを変更する必要があります

<link href="https://someSite.com/css/someStyle.css" rel="stylesheet" type="text/css" />

また、あなたが参照しているページはCSSではなく.htmlですが、それはタイプミスだと思います...

10

ガイドで説明されているように、cloudflareのプラグインを使用しました here

0
Akash Agarwal