Wamp SSL配置抛出404

时间:2016-11-16 18:30:33

标签: apache ssl configuration wamp

我有一个映射到IP地址的域。

http://test.main.com有效。 https://test.main.com不起作用,收到404错误。

请帮我找出问题

以下是我的httpd-ssl.con文件

 <VirtualHost *:443>
    DocumentRoot "D:/ews/liveenergy/myapp"
    ServerName test.main.com:443
    ServerAdmin admin@localhost
    ErrorLog "C:/wamp32/wamp/bin/apache/apache2.4.9/logs/apache_error.log"
    TransferLog "C:/wamp32/wamp/bin/apache/apache2.4.9/logs/access.log"
    SSLEngine on
    SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL

    SSLCertificateFile "C:/wamp32/wamp/bin/apache/apache2.4.9/conf/ssl.crt/ServerCertificate.crt"        

    SSLCertificateKeyFile "C:/wamp32/wamp/bin/apache/apache2.4.9/conf/ssl.key/rms_bldgot_com.key"        

    SSLCertificateChainFile "C:/wamp32/wamp/bin/apache/apache2.4.9/conf/ssl.crt/ChainBundle1.crt"
    <FilesMatch "\.(cgi|shtml|phtml|php)$">
    SSLOptions +StdEnvVars
    </FilesMatch>

    <Directory "D:/ews/liveenergy/myapp">
    SSLOptions +StdEnvVars
    Options Indexes FollowSymLinks MultiViews
    AllowOverride All

    Order Deny,Allow
    Allow from 127.0.0.1
    </Directory>
    BrowserMatch ".*MSIE.*" \
    nokeepalive ssl-unclean-shutdown \
    downgrade-1.0 force-response-1.0

    CustomLog "C:/wamp/logs/ssl_request.log" \
    "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
</VirtualHost> 

1 个答案:

答案 0 :(得分:0)

其他一些服务也可能在端口80上运行。解决方案可能是更改正在监听的端口

所以改变Wamp监听的端口:

Click on Wamp server -> Apache -> httpd.conf
Change Listen 80 to something else, eg: Listen 81
I would also change Server Name localhost:80 to ServerName localhost:81

如果您已完成此操作并保存了httpd.conf,则必须重新启动Wamp服务器。然后使用localhost:81作为根URL。

所以网址看起来像

localhost:81/phpmyadmin
localhost:81/mysite_directory