Skip to content

Instantly share code, notes, and snippets.

@wesleysaraujo
Last active August 29, 2015 13:56
Show Gist options
  • Save wesleysaraujo/9192116 to your computer and use it in GitHub Desktop.
Save wesleysaraujo/9192116 to your computer and use it in GitHub Desktop.
.htaccess de redirecionamento do app para subpasta (public), esse código eu utilizo quando o app (FuelPHP, Simphony, ZendFramework, Laravel) é instalado em um servidor compartilhado com cPanel
RewriteEngine on
RewriteCond %{REQUEST_URI} !^/public/
RewriteRule (.*) /public/$1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment