engrnvd/Sell-Quick/master/.htaccess
#RewriteEngine On # Turn on the rewriting engine
#RewriteRule (.+) web/index.php/$1 [QSA]
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^$ web/ [NC]
# Send would-be 404 requests to Craft
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/(favicon.ico|apple-touch-icon.*.png)$ [NC]
RewriteRule (.*) web/index.php/$1 [QSA,L]
</IfModule>
Files
