forkbb/public/.dist.htaccess
2020-06-12 19:06:28 +07:00

19 lines
433 B
Text

AddDefaultCharset UTF-8
<IfModule mod_autoindex.c>
Options -Indexes
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine On
#RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !^/style/
RewriteCond %{REQUEST_URI} !^/img/
RewriteCond %{REQUEST_URI} !^/favicon\.ico$
RewriteCond %{REQUEST_URI} !^/robots\.txt$
RewriteRule . index.php [L]
RewriteRule \.dist\. index.php [L]
</IfModule>