Skip to content

Instantly share code, notes, and snippets.

@koffisani
Created October 12, 2016 11:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save koffisani/4941da5b330ed0708b8f0d672b540077 to your computer and use it in GitHub Desktop.
Save koffisani/4941da5b330ed0708b8f0d672b540077 to your computer and use it in GitHub Desktop.
.htaccess file for CakePHP 3 webroot/ folder
# webroot/.htaccess
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^$ webroot/ [L]
RewriteRule (.*) webroot/$1 [L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment