# yii **Repository Path**: webjust/yii ## Basic Information - **Project Name**: yii - **Description**: No description available - **Primary Language**: Unknown - **License**: BSD-3-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-07-15 - **Last Updated**: 2024-06-03 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # readme mkdir web/assets mkdir runtime # note https://gitee.com/webjust/yii20_notes https://www.kancloud.cn/book/webjust/yii2_shop/edit # packaagist https://packagist.org/packages/symfony/var-dumper#v3.2.10 composer update # email config ``` 'mailer' => [ 'class' => 'yii\swiftmailer\Mailer', // send all mails to a file by default. You have to set // 'useFileTransport' to false and configure a transport // for the mailer to send real emails. 'useFileTransport' => false, 'transport' => [ 'class' => 'Swift_SmtpTransport', 'host' => 'smtp.126.com', 'username' => 'wbo86@126.com', 'password' => 'webjust861210', 'port' => '465', 'encryption' => 'ssl', ], ], ``` # How to remove index.php and web from URL in yii 2 framework https://www.cnblogs.com/guoyinli/p/6692142.html https://www.codingproblem.com/how-to-remove-index-php-and-web-from-url-in-yii-2-framework/