Yii v2 snippet guide

Comparing #146 with #147

Revision #147 was created by rackycz rackycz on Oct 6, 2019, 9:40:17 PM.

web folder

Content

[...]
Now you will need 2 files named .htaccess
- C:\xampp\htdocs\basic\web\.htaccess
- C:\xampp\htdocs\basic\.htaccess

The first one is mentioned in chapter **Nice URLs**
.
The second is much simpler:

```
RewriteEngine on
RewriteRule ^(.*)$ web/$1 [L]
[...]