1 go to the site config file at /etc/httpd/sites/
open the config file (e.g. 0016_195.75.175.184_443_secure.example.com.conf) in pico and edit the section 【程序编程相关:RPM(Redhat Package M】
cd /etc/httpd/sites/ 【推荐阅读:在Redhat Linux AS 4下实】
【扩展信息:Ftp的两种工作模式】rewriteengine on rewritecond % ^trace rewriterule .* - [f]
adding the following condition and rule and either delete or comment out the existing conditions and rules.
rewritecond % !443
rewriterule (.*) https://secure.example.com/ [r]so that it reads as
rewriteengine on ## rewritecond % ^trace ## rewriterule .* - [f] rewritecond % !443 rewriterule (.*) https://secure.example.com/ [r] ... 下一页