如何使 IP 地址显示我的 wordpress 而不是 apache?

如何使 IP 地址显示我的 wordpress 而不是 apache?

我创建了一个单独的网站用于开发,但我只能通过 123.45.678.90/wordpress 访问我的 wordpress 网站,而不能通过 123.45.678.90。我的 IP 指向默认的 apache 页面(我希望它是我的 wordpress 页面)。此外,对于管理员登录,当我输入 123.45.678.90/wordpress/wp-admin 时,它会将我带回到默认的 apache 页面,而不是 wordpress 登录。谢谢!!

在 /etc/apache2/sites-enabled 中我有两个配置文件。不确定是否有帮助。

000-default.conf 
<VirtualHost *:80>
        ServerAdmin webmaster@localhost
        DocumentRoot /var/www/html

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

# vim: syntax=apache ts=4 sw=4 sts=4 sr noet




wordpress.conf 
Alias /blog /usr/share/wordpress
<Directory /usr/share/wordpress>
    Options FollowSymLinks
    AllowOverride Limit Options FileInfo
    DirectoryIndex index.php
    Order allow,deny
    Allow from all
</Directory>
<Directory /usr/share/wordpress/wp-content>
    Options FollowSymLinks
    Order allow,deny
    Allow from all
</Directory>

相关内容