当我从端口80更改时,无法在uWAMP上访问WordPress

时间:2019-02-21 作者:Anthony Gallagher

我不能在我的大学里使用端口80,我需要一个mysql数据库和一个wordpress版本来完成大学作业。因此,当我从端口80更改为801(或任何端口)时,我无法访问Wordpress。我试着编辑我的Wp\\u配置文件,Wp\\u选项数据库,但每次wordpress都默认从localhost:801返回localhost。有没有办法解决这个问题?或者是uWAMP的另一种便携式替代品?任何帮助都将不胜感激。

1 个回复
SO网友:MikeNGarrett

此站点的apache配置应具有如下内容:

<VirtualHost *:80>
    # The primary domain for this host
    ServerName example1.com
    # Optionally have other subdomains also managed by this Virtual Host
    ServerAlias example1.com *.example1.com
    DocumentRoot /var/www/html/example1.com/public_html
    <Directory /var/www/html/example1.com/public_html>
        Require all granted
        # Allow local .htaccess to override Apache configuration settings
        AllowOverride all
    </Directory>
</VirtualHost>
要更改Apache正在侦听的端口,请修改*:80 到您选择的港口。

要更改对公众开放的端口,您可能需要更改防火墙其他系统的配置。

这里有一个关于正确设置WordPress的不错的教程:https://www.linode.com/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/