我想重定向我的所有頁面,使他們使用HTTPS協議,除了一個路徑。我確實找到了以下頁面(mod_rewrite redirect all to https except one file),但提供的解決方案對我無效。我也嘗試過其他解決方案,都無濟於事。國防部重寫全部重定向到https除了一個文件
這裏是我當前的代碼:
Options -Indexes
RewriteEngine On
# do nothing for my-awesome-path.php
RewriteRule ^keg-collars-studio\.php$ - [L]
RewriteCond %{HTTPS} off
RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI}
RewriteRule ^(.*)\.html$ $1\.php [QSA,L]
我已經編輯我的職務與確切的內容和路徑。任何幫助是極大的讚賞。
的路徑是mysite.com/my-awesome-path.php – 2015-02-24 10:39:04
當然,我已經編輯我的職務。 – 2015-02-24 11:05:03