Skip to content

Instantly share code, notes, and snippets.

@aminaminamin93
aminaminamin93 / cakephp-shared-htaccess
Created May 17, 2017 12:53
CakePHP on GoDaddy Shared Hosting .htaccess settings
#Need to add three .htaccess files as well as configure the database.php file
####### In the root directory
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteRule ^$ app/webroot/ [L]
RewriteRule (.*) app/webroot/$1 [L]
</IfModule>