停止 https 和 ServerName 重定向 apache2

Stop https and ServerName redirection apache2

我的问题很简单我想访问http://tunisie-telegraph.com but it redirects me to https://tunisietelegraph.com

我的域名 dns 是 ns1.digitalocean.com、ns2.digitalocean.com、ns3.digitalocean.com 我有 2 个“A”和 2 个“AAAA”记录(有 www 和没有)

我删除了 .htaccess 文件

我的虚拟主机文件:

# Added to mitigate CVE-2017-8295 vulnerability
UseCanonicalName On

<VirtualHost *:80>
        ServerAdmin private@gmail.com

        ServerName tunisie-telegraph.com
        ServerAlias www.tunisie-telegraph.com

        DocumentRoot /var/www/html

        <Directory /var/www/html/>
            Options FollowSymLinks
            AllowOverride All
            Require all granted
        </Directory>

        ErrorLog ${APACHE_LOG_DIR}/error.log
        CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>

能否请您查看 wp_options table 中的站点 URL 和首页 URL。可能 URL 在其中一列中有所不同,因为当我像这样添加 url 时 https://tunisietelegraph.com/wp-login.php 它不会重定向

或者您也可以从 wp_config.php 设置站点 URL 和首页 URL

define( 'WP_HOME', 'http://tunisie-telegraph.com' );
define( 'WP_SITEURL', 'http://tunisie-telegraph.com' );