Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update the .htaccess files to increase
compatibility with shared hosting servers.
Fixes #2010
  • Loading branch information
markstory committed Oct 8, 2011
1 parent a8af978 commit e07256b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/webroot/.htaccess
Expand Up @@ -2,5 +2,5 @@
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,L]
</IfModule>
RewriteRule ^(.*)$ index.php?/$1 [QSA,L]
</IfModule>
4 changes: 2 additions & 2 deletions lib/Cake/Console/Templates/skel/webroot/.htaccess
Expand Up @@ -2,5 +2,5 @@
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,L]
</IfModule>
RewriteRule ^(.*)$ index.php?/$1 [QSA,L]
</IfModule>

0 comments on commit e07256b

Please sign in to comment.