sachingadagi/Udaan2016/master/api/.htaccess - Htaccess File

sachingadagi/Udaan2016/master/api/.htaccess

# Check if mod_rewrite rule is available and enabled!
<IfModule mod_rewrite.c>

# SettingRewrite on
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f

# Redirecting/routing all the calls from index.php
RewriteRule ^ index.php [QSA,L]

</IfModule>

# HandlingError 404
ErrorDocument 404 /404.php

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache