Last active
April 18, 2019 18:43
-
-
Save rudowastaken/7173900 to your computer and use it in GitHub Desktop.
ModRewrite for Laravel project deployment @ websupport.sk
Use in the application root
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
DirectorySlash Off | |
Options +FollowSymlinks -Indexes -MultiViews | |
AddDefaultCharset utf-8 | |
DirectoryIndex /public/index.php | |
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteBase / | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{REQUEST_FILENAME} !-d | |
RewriteRule ^(.*)$ /public/$1 [L,QSA] | |
</IfModule> |
VeeeneX
commented
Jan 3, 2018
- Skryvanie env :)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment