Skip to content

Instantly share code, notes, and snippets.

@erycamel
erycamel / gist:bb0e5653977d620e68ce
Last active March 11, 2021 11:12
Yii2 htaccess - How to hide frontend/web and backend/web COMPLETELY
Step 1
Create .htaccess file in root folder, i.e advanced/.htaccess and write below code.
---------------
Options +FollowSymlinks
RewriteEngine On
# deal with admin first
RewriteCond %{REQUEST_URI} ^/(admin) <------
RewriteRule ^admin/assets/(.*)$ backend/web/assets/$1 [L]
RewriteRule ^admin/css/(.*)$ backend/web/css/$1 [L]