Initial commit
This commit is contained in:
13
.htaccess
Normal file
13
.htaccess
Normal file
@@ -0,0 +1,13 @@
|
||||
<IfModule mod_rewrite.c>
|
||||
RewriteEngine On
|
||||
|
||||
# Tell PHP that the mod_rewrite module is ENABLED.
|
||||
SetEnv HTTP_MOD_REWRITE On
|
||||
|
||||
# Dont redirect direct links to files or directories to the index.php
|
||||
RewriteCond %{REQUEST_FILENAME} !-f
|
||||
RewriteCond %{REQUEST_FILENAME} !-d
|
||||
|
||||
# Rewrite all other URLs to index.php/URL
|
||||
RewriteRule ^(.*)$ index.php?url=$1 [PT,L]
|
||||
</IfModule>
|
Reference in New Issue
Block a user