diff --git a/.htaccess b/.htaccess index 912ffa81..0245900a 100644 --- a/.htaccess +++ b/.htaccess @@ -5,11 +5,14 @@ AddDefaultCharset UTF-8 # Enable rewrite rules RewriteEngine on +# Make this Folder our base +RewriteBase / + # Deny direct access to .txt files RewriteRule ^bl-content/(.*)\.txt$ - [R=404,L] # All URL process by index.php RewriteCond %{REQUEST_FILENAME} !-f -RewriteRule ^(.*) index.php [PT,L] +RewriteRule ^(.*) index.php/ [PT,L] - \ No newline at end of file +