Dear Wiki user, You have subscribed to a wiki page or wiki category on "Httpd Wiki" for change notification.
The "RewriteSSL" page has been changed by thumbs. http://wiki.apache.org/httpd/RewriteSSL?action=diff&rev1=8&rev2=9 -------------------------------------------------- RewriteEngine On RewriteCond %{HTTPS} !=on [NC] RewriteCond %{REQUEST_URI} ^/secure(/.*)? - RewriteRule ^ https://%{SERVER_NAME}/secure%1 [R,L] + RewriteRule ^ https://%{SERVER_NAME}/%{REQUEST_URI} [R,L] }}} Please note that (/.*)? will make the presence of a / followed by any characters conditional. The value is appended to the target URL.
