Skip to content

Instantly share code, notes, and snippets.

@ignasbernotas
Last active April 3, 2016 20:49
Show Gist options
  • Save ignasbernotas/af3115b36a78fce50a7f to your computer and use it in GitHub Desktop.
Save ignasbernotas/af3115b36a78fce50a7f to your computer and use it in GitHub Desktop.
.htaccess
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} !^/public/
RewriteCond /public/%{REQUEST_URI} -d
RewriteCond %{REQUEST_URI} !(.*)/$
RewriteRule ^(.*)$ /public/$1/
RewriteBase /
RewriteCond %{REQUEST_URI} !^/public/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /public/$1
RewriteBase /
RewriteRule ^(/)?$ /public/index.php [L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment