You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
531 B
11 lines
531 B
<IfModule mod_rewrite.c> # Check for mod_rewite module.
|
|
RewriteEngine On # Turn mod_rewrite module on
|
|
#RewriteBase / # May be required to access sub-directories
|
|
RewriteCond %{REQUEST_FILENAME} !-f # Any request that is not a file,
|
|
RewriteCond %{REQUEST_FILENAME} !-d # Any request that is not a directory,
|
|
RewriteRule . index.php [L] # Reroute the request to index.php
|
|
</IfModule>
|
|
|
|
|
|
# Prevent file browsing
|
|
Options -Indexes
|
|
|