sas05/test-simple-rest/master/resources/.htaccess - Htaccess File

sas05/test-simple-rest/master/resources/.htaccess

RewriteEngine on

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !(api/.*)

#let angular do the magic
RewriteRule ^(.*) index.html [NC,L]

#let the php framework do the rest
RewriteRule ^(api/.*) api/index.php [NC,L]

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME, REQUEST_URI

Comments

Apache