9 lines
271 B
Plaintext
9 lines
271 B
Plaintext
|
<VirtualHost *:80>
|
||
|
ServerAdmin info@openworlds.info
|
||
|
ServerName openworlds.info
|
||
|
ServerSignature Off
|
||
|
RewriteEngine on
|
||
|
RewriteCond %{SERVER_NAME} =openworlds.info
|
||
|
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
|
||
|
</VirtualHost>
|