Advertisement
aivavic

robots.txt

Jul 6th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.41 KB | None | 0 0
  1. // SiteController
  2. public function actionRobots()
  3.     {
  4.         header("Content-type: text/plain");
  5.         Yii::$app->response->data = DbText::widget(['key' => 'frontend.web.robots.txt']);
  6.         Yii::$app->response->format = \yii\web\Response::FORMAT_RAW;
  7.         return Yii::$app->response;
  8.     }
  9.  
  10. // /frontend/config/_urlManager.php
  11. ['pattern' => 'robots', 'route' => 'site/robots', 'suffix' => 'txt'],
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement