Skip to content

Instantly share code, notes, and snippets.

@sk1ter
Created July 3, 2019 15:52
Show Gist options
  • Save sk1ter/9b5a72e2e0bd782465f04e5c3cdb623b to your computer and use it in GitHub Desktop.
Save sk1ter/9b5a72e2e0bd782465f04e5c3cdb623b to your computer and use it in GitHub Desktop.
Yii2 .htaccess file
Options +FollowSymLinks
IndexIgnore */*
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/(web)
RewriteRule ^assets/(.*)$ /web/assets/$1 [L]
RewriteRule ^css/(.*)$ web/css/$1 [L]
RewriteRule ^js/(.*)$ web/js/$1 [L]
RewriteRule ^images/(.*)$ web/images/$1 [L]
RewriteRule (.*) /web/$1
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /web/index.php
RewriteEngine On RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment