Navigation Menu

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>
@aminaminamin93
aminaminamin93 / .htaccess
Last active May 17, 2017 15:25
HTACCESS FOR CAKEPHP for shared hosting
#ROOT FOLDER
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteRule ^$ app/webroot/ [L]
RewriteRule (.*) app/webroot/$1 [L]
</IfModule>
#The app(app folder) / htaccess should look like