Skip to content

Instantly share code, notes, and snippets.

@memandip
Last active July 31, 2020 17:57
Show Gist options
  • Save memandip/29e2aaab7f576be66d162d013efe8c91 to your computer and use it in GitHub Desktop.
Save memandip/29e2aaab7f576be66d162d013efe8c91 to your computer and use it in GitHub Desktop.
htaccess configuration for symfony 3 app
Options +FollowSymLinks
RewriteEngine On
# For all URL starting with nice-admin, assets, limitless
RewriteCond %{REQUEST_URI} ^/?(nice-admin|assets|limitless)(/.*)?$ [NC]
RewriteRule ^.*$ /web/%1%2 [L]
RewriteRule ^ web/app.php [L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment