Alibaba Cloud windowserver WAMP environment configuration

This article is about the Alibaba Cloud windowsserver2019 server
Resource link:
Lan
Zuoyun
: (Need to install VS first, otherwise report an error) VS development components: https://ww.lanzous.com/ibda0kj wamp: https: //ww.lanzous .com / ibda10f
1. Enter the server management interface / network and security / security group / configuration rules
Open port 80 and port 3306
Insert picture description here
2. Win + R input mstsc to remotely enter the server
Insert picture description here
3. Install the above two resources on the server
4. Modify httpd.conf under the conf in the bim directory of the Apache component after wamp installation

<Directory "C:/Program Files/wamp/www/">
    #
    # Possible values for the Options directive are "None", "All",
    # or any combination of:
    #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
    #
    # Note that "MultiViews" must be named *explicitly* --- "Options All"
    # doesn't give it to you.
    #
    # The Options directive is both complicated and important.  Please see
    # http://httpd.apache.org/docs/2.4/mod/core.html#options
    # for more information.
    #
    Options Indexes FollowSymLinks

    #
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be "All", "None", or any combination of the keywords:
    #   AllowOverride FileInfo AuthConfig Limit
    #
    AllowOverride all

    #
    # Controls who can get stuff from this server.
    #

#   onlineoffline tag - don't remove
    Require all granted
#   Order Deny,Allow
#  Require local
</Directory>

Restart Apache
5. Internet access server IP, the interface is as followsInsert picture description here

Published 11 original articles · Like1 · Visit 200

Guess you like

Origin blog.csdn.net/weixin_43919927/article/details/105510381