lusaisai/m/master/.htaccess - Htaccess File

lusaisai/m/master/.htaccess

#php_value output_buffering On
#php_value output_buffering Off

<IfModule mod_rewrite.c>

RewriteEngine on

# Send all requests that are not existing files or
# directories to index.php

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# RewriteRule ^(.*)$ index.php/$1 [L]
RewriteRule ^(.*)$ index.php?%{QUERY_STRING} [L]

</IfModule>

<ifModule mod_headers.c>
Header set Connection keep-alive
</ifModule>

On Github License

Files

Download PDF of Htaccess file
QUERY_STRING, REQUEST_FILENAME

Comments

Apache