我有一個基於php的網站....我試圖使用ssl ...該ssl在網站上正常工作,問題是它不重定向與https ....它只顯示http ,我嘗試編輯在.htaccess文件,但它不工作.... 也是我的網站與該格式example.org/開放的index.html與/index.html如何在特定文件example.org/index.html上強制使用SSL?
我試圖用這個,但不工作
RewriteCond %{HTTPS} off
RewriteRule^https://%{HTTP_HOST}%{REQUEST_URI} [NE,L,R=301]
的.htaccess代碼:
RewriteEngine On
RewriteBase/
#AuthUserFile /home/products/html/path/.htpasswd
#AuthGroupFile /dev/null
#AuthName "Private Area"
#AuthType Basic
#<Limit GET POST>
#require valid-user
#</Limit>
<FilesMatch "\.(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf)$">
FileETag None
<IfModule mod_headers.c>
Header unset ETag
Header set Cache-Control "max-age=31536000, Public"
</IfModule>
</FilesMatch>
Options -Indexes
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.+).html$ $1/?%{QUERY_STRING}
-------urls---------
RewriteRule ^index/$ path/index.php
RewriteRule ^index/([^\/]+)/$ path/index.php?list=$1&%{QUERY_STRING}