Last active
July 31, 2020 17:57
-
-
Save memandip/29e2aaab7f576be66d162d013efe8c91 to your computer and use it in GitHub Desktop.
htaccess configuration for symfony 3 app
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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