for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace sample\controllers\web;
use yii\web\Controller;
class DefaultController extends Controller
{
/**
* Just a link from the root to .well-known/security.txt
* @return string
*/
public function actionIndex()
return 'See <a href=".well-known/security.txt">.well-known/security.txt</a>';
}