День добрый!
С недавних пор с форума исчезли поисковики. Не ходят. Просела посещаемость, только прямые заходы остались :( В яндекс.мастере количество проиндексированных страниц улетело к нулю..
При проверке через
Конфиг апача:
Конфиг htaccess
Конфиг ксени:
Подскажите, пожалуйста, в чем м.б. проблема?
С недавних пор с форума исчезли поисковики. Не ходят. Просела посещаемость, только прямые заходы остались :( В яндекс.мастере количество проиндексированных страниц улетело к нулю..
При проверке через
У Вас недостаточно прав для просмотра ссылок.
Вход или Регистрация
выдается
Код:
Робот видит такие заголовки (Header ответ)
HTTP/1.1 301 Moved Permanently
Date: Mon, 10 Jul 2017 11:07:32 GMT
Server: Apache/2.4.26 (Ubuntu)
Location: https://kudrovo.life/
Content-Type: text/html; charset=iso-8859-1
IP: 31.134.141.199
Код состояния HTTP: HTTP/1.1 301 Moved Permanently
Код перенаправления
Запрошенный документ был окончательно перенесен на новый URI, указанный в поле Location заголовка.
Конфиг апача:
Код:
<IfModule mod_ssl.c>
<VirtualHost *:443>
### YOUR SERVER ADDRESS ###
ServerAdmin [email protected]
ServerName kudrovo.life
ServerAlias www.kudrovo.life
Protocols h2 http/1.1
### SETTINGS ###
DocumentRoot /var/www/kudrovo.life
<Directory /var/www/kudrovo.life>
Options -Indexes +FollowSymLinks
AllowOverride All
</Directory>
<IfModule pagespeed_module>
ModPagespeed off
</IfModule>
### PIWIK ###
<Directory /var/www/piwik>
Options -Indexes +FollowSymLinks
AllowOverride all
Require all granted
Satisfy Any
</Directory>
Alias /piwik "/var/www/piwik/"
SetEnv HOME /var/www/kudrovo.life
SetEnv HTTP_HOME /var/www/kudrovo.life
ErrorLog ${APACHE_LOG_DIR}/kudrovo.life.error.log
CustomLog ${APACHE_LOG_DIR}/kudrovo.life.access.log combined
### CERTIFICATE SETTINGS ###
SSLCertificateFile /etc/letsencrypt/live/kudrovo.life/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/kudrovo.life/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
</VirtualHost>
</IfModule>
Конфиг htaccess
Код:
# Mod_security can interfere with uploading of content such as attachments. If you
# cannot attach files, remove the "#" from the lines below.
#<IfModule mod_security.c>
# SecFilterEngine Off
# SecFilterScanPOST Off
#</IfModule>
ErrorDocument 401 default
ErrorDocument 403 default
ErrorDocument 404 default
ErrorDocument 405 default
ErrorDocument 406 default
ErrorDocument 500 default
ErrorDocument 501 default
ErrorDocument 503 default
<IfModule mod_rewrite.c>
RewriteEngine On
# If you are having problems with the rewrite rules, remove the "#" from the
# line that begins "RewriteBase" below. You will also have to change the path
# of the rewrite to reflect the path to your XenForo installation.
#RewriteBase /xenforo
# This line may be needed to enable WebDAV editing with PHP as a CGI.
#RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^(data/|js/|styles/|install/|favicon\.ico|crossdomain\.xml|robots\.txt) - [NC,L]
RewriteRule ^.*$ index.php [NC,L]
</IfModule>
<FilesMatch "admin.php">
AuthType Basic
AuthName "What have you forgotten here?"
AuthUserFile /var/www_data/.htpasswd
require valid-user
</FilesMatch>
Конфиг ксени:
Код:
<?php
$config['db']['host'] = 'localhost';
$config['db']['port'] = '3306';
$config['db']['username'] = '-------------';
$config['db']['password'] = '---------------';
$config['db']['dbname'] = '---------------';
/**
$config['acpp_sql_password'] = '-----------------';
*/
$_SERVER['HTTPS'] = 'on';
$config['superAdmins'] = '1';
$config['cache']['enabled'] = true;
$config['cache']['cacheSessions'] = true;
$config['cache']['frontend'] = 'Core';
$config['cache']['frontendOptions'] = array(
'caching' => true,
'automatic_serialization' => false,
'lifetime' => 3600,
'cache_id_prefix' => 'xf_'
);
/**
$config['cache']['backend'] = 'APC';
$config['cache']['backend'] = 'Memcached';
$config['cache']['backendOptions'] = array(
'compression' => false,
'servers' => array(
array(
'host' => 'localhost',
'port' => 11211,
)
)
);
*/
$config['cache']['backend'] = 'Redis';
$config['cache']['backendOptions'] = array(
'server' => '127.0.0.1',
'port' => 6379,
'connect_retries' => 2,
'use_lua' => true,
'compress_data' => 2,
'read_timeout' => 1,
'timeout' => 1,
);
/** отключить (0) - включить (1) все плагины */
$config['enableListeners'] = 1;
Подскажите, пожалуйста, в чем м.б. проблема?