Htaccess File

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

REQUEST_FILENAME, REQUEST_URI
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]
Exit mobile version