Skip to content

Instantly share code, notes, and snippets.

@jackfruh
Last active March 16, 2019 18:44
Show Gist options
  • Save jackfruh/119f7a131781e20b3605 to your computer and use it in GitHub Desktop.
Save jackfruh/119f7a131781e20b3605 to your computer and use it in GitHub Desktop.
htaccess files that worked with CakePHP and 1and1 hosting
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^$ /app/webroot/ [L]
RewriteRule (.*) /app/webroot/$1 [L]
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^$ /webroot/ [L]
RewriteRule (.*) /webroot/$1 [L]
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^$ /webroot/ [L]
RewriteRule (.*) /webroot/$1 [L]
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ /index.php [L]
</IfModule>
@BassemN
Copy link

BassemN commented Mar 16, 2019

Thanks a lot 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment