Created
October 12, 2016 11:04
-
-
Save koffisani/4941da5b330ed0708b8f0d672b540077 to your computer and use it in GitHub Desktop.
.htaccess file for CakePHP 3 webroot/ folder
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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