1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-06-16 14:50:48 +03:00
ifhub.club/.htaccess

31 lines
613 B
ApacheConf
Raw Normal View History

<IfModule headers_module>
Header set X-UA-Compatible "IE=Edge,chrome=1"
</IfModule>
2015-04-05 12:05:16 +03:00
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
AddDefaultCharset UTF-8
Options -Indexes
2008-09-21 09:36:57 +03:00
RewriteEngine On
2012-07-03 09:35:39 +03:00
#RewriteBase /
2008-09-21 09:36:57 +03:00
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ ./index.php
2012-07-03 09:35:39 +03:00
# Alternative rule
#RewriteRule ^(.*)$ /index.php
2013-01-21 08:23:50 +02:00
# Deny access
<Files "plugins.dat">
2013-01-21 08:23:50 +02:00
order allow,deny
deny from all
</Files>
<Files "plugin.xml">
2013-01-21 08:23:50 +02:00
order allow,deny
deny from all
</Files>
2013-01-21 08:23:50 +02:00
<Files ~ "\.tpl$">
Order allow,deny
Deny from all
</Files>