Skip to content

Commit 4b62059

Browse files
authoredJan 27, 2025
added .htaccess
1 parent 56e59f9 commit 4b62059

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
 

‎.htaccess

+15
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)