DISCOOS/sar-tag/master/app/src/.htaccess - Htaccess File

DISCOOS/sar-tag/master/app/src/.htaccess

DirectoryIndex index.php
<IfModule mod_rewrite.c>
    RewriteEngine On

    # You may need RewriteBase on some servers (debian). NOTE: / is document root.
    RewriteBase /sar-tag/

    # Rewrite anything that would give a 404 to api.php
    RewriteRule ^$ api.php [QSA,L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ api.php [QSA,L]

</IfModule>

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache