We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56e59f9 commit 4b62059Copy full SHA for 4b62059
.htaccess
@@ -0,0 +1,15 @@
1
+## EXPIRES CACHING ##
2
+
3
+# Prevent file browsing
4
+Options -Indexes
5
6
7
+####### this is the code that does the rewrite stuff for the pages used in index.php
8
9
+<IfModule mod_rewrite.c>
10
+Options +FollowSymLinks
11
+RewriteEngine On
12
+RewriteCond %{REQUEST_FILENAME} !-d
13
+RewriteCond %{REQUEST_FILENAME} !-f
14
+RewriteRule . index.php [L]
15
+</IfModule>
0 commit comments