0
我需要重定向所有種類的頁面打開像http://oursite.com或http://www.oursite.com到httpS://WWW.oursite.com
的Apache2 - 的.htaccess所有重定向到https:// WWW
你能給我那種規則的htaccess的規則?
<IfModule mod_rewrite.c>
ErrorDocument 404 /page-404.php
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule .+ - [L]
RewriteCond %{THE_REQUEST} ^[A-Z]+\s([^\s]+)\.php\s [NC]
RewriteRule .* %1.html [R=301,L]
# make sure .php file exists for the requested .html file
RewriteCond %{DOCUMENT_ROOT}/$1\.php -f [NC]
RewriteRule ^(.+?)\.html$ $1.php [L,NC]
</IfModule>
在此先感謝!
任何你試過,包括閱讀文檔和/或聯機幫助? – planetmaker
它在那裏.... –