https redirect for wiki

This commit is contained in:
Unick Soft
2019-04-20 10:43:24 +02:00
parent 2c12f8a04a
commit 168f9d744e

View File

@@ -2,6 +2,11 @@
RewriteEngine On
# Define the rewrite base.
RewriteBase /wiki
# Auto redirect to https.
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
# Send requests without parameters to pmwiki.php.
RewriteRule ^$ pmwiki.php [L]
# Send requests for index.php to pmwiki.php.