2012-04-10 10:25:29 +00:00
|
|
|
LoadModule rewrite_module /usr/lib/apache2/modules/mod_rewrite.so
|
2015-03-26 10:17:17 +00:00
|
|
|
LoadModule cgi_module /usr/lib/apache2/modules/mod_cgi.so
|
2012-04-10 10:25:29 +00:00
|
|
|
RewriteEngine On
|
|
|
|
RewriteCond %{SERVER_PORT} 80
|
|
|
|
RewriteCond %{REQUEST_URI} xcatws
|
|
|
|
RewriteRule ^(.*)$ https://%{SERVER_NAME}$1 [R,L]
|
|
|
|
|
|
|
|
<Files xcatws.cgi>
|
2015-03-26 10:17:17 +00:00
|
|
|
Require all granted
|
2012-04-10 10:25:29 +00:00
|
|
|
</Files>
|
|
|
|
|