WAMP服务器不允许使用“www”访问网站

问题描述 投票:0回答:1

我无法在域名前使用“www”访问我的网站,但如果我不使用“www”,我可以。我希望两者都可以访问。

我非常熟悉在Linux上使用Apache2 Server,但我不常常将它与WAMP一起使用。我已经在配置文件中做了很多搞乱,并尝试了一些不同的方法,但似乎没有任何工作。

这是httpd-vhosts.conf文件:

# Virtual Hosts

<VirtualHost *:80>
  ServerName localhost
  ServerAlias localhost
  DocumentRoot "${INSTALL_DIR}/www"
  <Directory "${INSTALL_DIR}/www/">
    Options +Indexes +Includes +FollowSymLinks +MultiViews
    Require all granted
  </Directory>
</VirtualHost>

<VirtualHost *:80>
    ServerName wherehousemke.com
    DocumentRoot "c:/wamp64/www/wherehousemke"
    <Directory  "c:/wamp64/www/wherehousemke/">
        Options +Indexes +Includes +FollowSymLinks +MultiViews
        Require all granted
    </Directory>
</VirtualHost>

我试图让这个工作的网站是http://wherehousemke.com。该URL正在运行,但如果您在其中添加“www”它将无法正常工作。

apache webserver wamp wampserver
1个回答
0
投票

您需要添加从您的TLD重定向到www子域https://www.digitalocean.com/community/questions/using-cname-for-www-redirection的DNS记录

© www.soinside.com 2019 - 2024. All rights reserved.