wfrancootero/pici/master/API/.htaccess - Htaccess File

wfrancootero/pici/master/API/.htaccess

<IfModule mod_rewrite.c>
    RewriteEngine On

  RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-s
  RewriteRule ^(.*)$ api.php?rquest=$1 [QSA,NC,L]

  RewriteCond %{REQUEST_FILENAME} -d
  RewriteRule ^(.*)$ api.php [QSA,NC,L]

  RewriteCond %{REQUEST_FILENAME} -s
  RewriteRule ^(.*)$ api.php [QSA,NC,L]  
</IfModule>

<ifModule mod_headers.c>
    Header set Access-Control-Allow-Origin: *
</ifModule>

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache