(root)/.htaccess – Rev 2
Details |
Last modification |
View Log
| RSS feed
Rev |
Author |
Line No. |
Line |
2 |
- |
1 |
ErrorDocument 403 /index.php
|
|
|
2 |
ErrorDocument 404 /index.php
|
|
|
3 |
|
|
|
4 |
# Redirect all non-www access to www
|
|
|
5 |
RewriteEngine On
|
|
|
6 |
RewriteCond %{HTTP_HOST} !^www\. [NC]
|
|
|
7 |
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
|
|
|
8 |
|
|
|
9 |
# No directory index
|
|
|
10 |
Options -Indexes
|