aboutsummaryrefslogtreecommitdiff
path: root/h-source/.htaccess
blob: 56ccf22b75e4fef96c3abad188e41cc2c0582be1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
RewriteEngine On

RewriteCond %{HTTPS} !^on$
RewriteRule (.*) https://www.h-node.org/$1 [R,L]

# <IfModule mod_rewrite.c>
# 	Options +FollowSymlinks
#    RewriteEngine on
	RewriteCond %{REQUEST_FILENAME} !-f
	RewriteCond %{REQUEST_FILENAME} !-d
	RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]
# </IfModule>