zoukankan      html  css  js  c++  java
  • php 路径别名设置


    <IfModule alias_module>
    #
    # Redirect: Allows you to tell clients about documents that used to
    # exist in your server's namespace, but do not anymore. The client
    # will make a new request for the document at its new location.
    # Example:
    # Redirect permanent /foo http://www.example.com/bar

    #
    # Alias: Maps web paths into filesystem paths and is used to
    # access content that does not live under the DocumentRoot.
    # Example:
    # Alias /webpath /full/filesystem/path
    #
    # If you include a trailing / on /webpath then the server will
    # require it to be present in the URL. You will also likely
    # need to provide a <Directory> section to allow access to
    # the filesystem path.

    #
    # ScriptAlias: This controls which directories contain server scripts.
    # ScriptAliases are essentially the same as Aliases, except that
    # documents in the target directory are treated as applications and
    # run by the server when requested rather than as documents sent to the
    # client. The same rules about trailing "/" apply to ScriptAlias
    # directives as to Alias.
    #
    #ScriptAlias /cgi-bin/ "C:/greenProgram/php/Apache/cgi-bin/"

    #Alias /o2o/assets "S:workso2oo2o-assets"
    #<Directory "S:workso2oo2o-assets">
    #AllowOverride AuthConfig
    #Order allow,deny
    #Allow from all
    #</Directory>

    Alias /o2o/assets "S:workso2oo2o-assets"
    <Directory "S:workso2oo2o-assets">
    AllowOverride AuthConfig
    Order allow,deny
    Allow from all
    </Directory>

    </IfModule>

  • 相关阅读:
    Redis命令——小白学习 Redis 数据库日记(2017-06-13)
    Buses(形容城市公车交通情况)
    Things you need to prepare before going to airport
    bathroom words
    this指针
    友元
    成员对象和封闭类
    静态成员变量和静态成员函数、 常量对象和常量成员函数
    C++类
    shell选择语句、循环语句
  • 原文地址:https://www.cnblogs.com/uh-huh/p/5405029.html
Copyright © 2011-2022 走看看