diff options
author | Yuchen Pei <hi@ypei.me> | 2021-08-26 11:24:58 +1000 |
---|---|---|
committer | Yuchen Pei <hi@ypei.me> | 2021-08-26 11:24:58 +1000 |
commit | 7b2c76f23be47a8753cfe6d197843a82c6ebf26d (patch) | |
tree | 3d85a179d3ac90dc4f25665c2bbff0c1372683a0 /h-source/.htaccess | |
parent | a57a3fa7241f33a94d41a1fd22a0d07c8fb6286d (diff) |
Moving docker files to its own directory.
Also applied the docker patch and removed some commented code.
Diffstat (limited to 'h-source/.htaccess')
-rwxr-xr-x | h-source/.htaccess | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/h-source/.htaccess b/h-source/.htaccess index 56ccf22..95ab62f 100755 --- a/h-source/.htaccess +++ b/h-source/.htaccess @@ -1,14 +1,5 @@ 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> - - +RewriteCond %{REQUEST_FILENAME} !-f +RewriteCond %{REQUEST_FILENAME} !-d +RewriteRule ^(.*)$ index.php?url=$1 [QSA,L] |