karamage/fundango/master/public/.htaccess - Htaccess File

karamage/fundango/master/public/.htaccess

# Multiple Environment config, set this to development, staging or production
# SetEnv FUEL_ENV production

<IfModule mod_rewrite.c>

  RewriteEngine on
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteRule ^(.*)$ index.php?/$1 [L]
# RewriteCond %{HTTP:X-Requested-With}  !^XMLHttpRequest$
# RewriteCond %{THE_REQUEST}                ^[^/]*/index.php [NC]
# RewriteRule ^index.php(.*)$          $1 [R=301,NS,L]

</IfModule>

On Github License

Files

Download PDF of Htaccess file
ENV, REQUEST_FILENAME, THE_REQUEST, X-Requested-With

Comments

Apache