Skip to content

Instantly share code, notes, and snippets.

@morshedalam
Created December 5, 2013 15:32
Show Gist options
  • Select an option

  • Save morshedalam/747684b5089d0f538482 to your computer and use it in GitHub Desktop.

Select an option

Save morshedalam/747684b5089d0f538482 to your computer and use it in GitHub Desktop.
Using directory from outside of app in CakePHP
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^(downloads)($|/) - [L]
RewriteRule ^$ app/webroot/ [L]
RewriteRule (.*) app/webroot/$1 [L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment