ericyoungberg/powder/master/.htaccess - Htaccess File

ericyoungberg/powder/master/.htaccess

#
## .htaccess
## Properly routes requests to the API 
#

# Make sure we have the Rewrite Module installed/enabled
  RewriteEngine On  

  RewriteCond %{REQUEST_FILENAME} -f
  RewriteRule ^.*$ - [L]

  RewriteCond %{REQUEST_FILENAME} -d
  RewriteRule ^.*$ - [L]

  RewriteRule api/(.*)$ powder/router.php [L]

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache