Commit 401fd1e3648518b5bfeccc6f96c9c6c9cdf89948

Authored by Alex Savenko
1 parent a8aa0f7d

commit from prod

.gitignore
... ... @@ -36,3 +36,6 @@ phpunit.phar
36 36 /artweb/
37 37 /storage
38 38 /common/config/settings.php
  39 +
  40 +/frontend/web/robots.txt
  41 +/frontend/web/sitemap.xml
... ...
.htaccess
... ... @@ -4,6 +4,14 @@ AddDefaultCharset utf-8
4 4 <IfModule mod_rewrite.c>
5 5 RewriteEngine On
6 6  
  7 +
  8 + RewriteCond %{HTTPS} off
  9 + RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
  10 +
  11 + RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
  12 + RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
  13 +
  14 +
7 15 # the main rewrite rule for the frontend application
8 16 RewriteCond %{REQUEST_URI} !^/(backend/web|admin|storage)
9 17 RewriteRule !^frontend/web /frontend/web%{REQUEST_URI} [L]
... ... @@ -15,8 +23,8 @@ AddDefaultCharset utf-8
15 23 RewriteCond %{REQUEST_URI} ^/admin
16 24 RewriteRule ^admin(.*) /backend/web/$1 [L]
17 25  
18   - RewriteCond %{REQUEST_FILENAME} robots.txt
19   - RewriteRule . /frontend/web/index.php [L]
  26 + # RewriteCond %{REQUEST_FILENAME} robots.txt
  27 + # RewriteRule . /frontend/web/index.php [L]
20 28  
21 29 # if a directory or a file of the uploads folder exists, use the request directly
22 30 RewriteCond %{REQUEST_URI} ^/storage
... ... @@ -88,4 +96,4 @@ AddDefaultCharset utf-8
88 96 RewriteCond %{HTTP:Accept-encoding} gzip
89 97 RewriteCond %{REQUEST_FILENAME}.gz -f
90 98 RewriteRule ^(.*)$ $1.gz [QSA,L]
91   -</IfModule>
92 99 \ No newline at end of file
  100 +</IfModule>
... ...
frontend/controllers/CheckoutController.php 100755 → 100644
... ... @@ -204,17 +204,21 @@
204 204 'order' => $model,
205 205 ]
206 206 )
207   - ->setFrom('order@acdc.com.ua')
  207 + ->setFrom(['no-reply@acdc.com.ua' => 'Интернет магазин ACDC'])
208 208 ->setTo(
209 209 [
210   - 'acdcim@gmail.com',
211 210 $model->email,
212 211 ]
213 212 )
  213 + ->setBcc(
  214 + [
  215 + 'acdcim@gmail.com',
  216 + ]
  217 + )
214 218 ->setSubject(
215 219 \Yii::t(
216 220 'app',
217   - 'Order {orderId}',
  221 + 'Заказ №{orderId}',
218 222 [
219 223 'orderId' => $model->id,
220 224 ]
... ...
frontend/views/layouts/main.php 100755 → 100644
... ... @@ -110,7 +110,7 @@ JS;
110 110 <head>
111 111 <meta charset="<?= \Yii::$app->charset ?>">
112 112 <meta name="viewport" content="width=device-width, initial-scale=1">
113   - <meta name="robots" content="noindex,nofollow">
  113 + <meta name="robots" content="all">
114 114 <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
115 115 <?= Html::csrfMetaTags() ?>
116 116 <title><?= Html::encode($seo->title) ?></title>
... ... @@ -489,7 +489,7 @@ _________________________________________________________ --&gt;
489 489 </li>
490 490 </ul>
491 491 <div class="style phones-mob-menu" style="text-align: center; color: #fff;margin-top: 10px">
492   - <span class="top-phone"><i class="fa fa-phone"></i>&ensp;+38 (044) 599-06-50</span>
  492 + <span class="top-phone"><i class="fa fa-phone"></i>&ensp;+38 (044) 490-70-07</span>
493 493 </div>
494 494 </div>
495 495 </div>
... ...
frontend/web/googlea5d742f239dd7867.html 0 → 100644
  1 +google-site-verification: googlea5d742f239dd7867.html
0 2 \ No newline at end of file
... ...