-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.htaccess
45 lines (37 loc) · 1.48 KB
/
.htaccess
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<IfModule mod_rewrite.c>
RewriteEngine On
###################################################
#Old pages redirects
###################################################
#Redirect 301 /oldpage.html http://www.example.com/newpage.html
###################################################
#Redirect to https
###################################################
#RewriteCond %{HTTPS} !=on
#RewriteRule (.*) https://%{SERVER_NAME}/$1 [R=301,NE,L]
###################################################
#Redirect to www
###################################################
#RewriteCond %{HTTP_HOST} !^$
#RewriteCond %{HTTP_HOST} !^www\. [NC]
#RewriteCond %{HTTPS}s ^on(s)|
#RewriteRule ^ http%1://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
###################################################
#Redirect to non-www
###################################################
#RewriteCond %{HTTP_HOST} ^www\.
#RewriteCond %{HTTPS}s ^on(s)|off
#RewriteCond http%1://%{HTTP_HOST} ^(https?://)(www\.)?(.+)$
#RewriteRule ^ %1%3%{REQUEST_URI} [R=301,L]
# RewriteCond %{HTTP:X-Forwarded-Proto} !https [OR]
# RewriteCond %{HTTP_HOST} ^(www\.)
# RewriteRule (.*) https://burner.matronator.cz%{REQUEST_URI} [L,R=301]
###################################################
#Set index folder
###################################################
RewriteRule ^$ /www/ [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/www/
RewriteRule ^(.*)$ /www/$1
</IfModule>