apache httpd.conf alias

Posted fsong

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了apache httpd.conf alias相关的知识,希望对你有一定的参考价值。

参考 Apache alias目录配置

我的环境是 Ubuntu apache2,配置文件目录在 /etc/apache2/sites-available/000-default.conf

在这个配置文件中,添加

<Directory /var/www/html>
        Options Indexes FollowSymLinks MultiViews
        AllowOverride All
        Order allow,deny
        allow from all
</Directory>

Alias /testweb /var/www/html/testweb/public

<Directory /var/www/html/testweb/public>
   Options Indexes FollowSymLinks MultiViews
   AllowOverride All
   Require all granted
   Order allow,deny
   allow from all
</Directory>

如果启动了 ssl,在 ssl中的配置也是一样的

  1. Apache alias目录配置
  2. /etc/apache2/sites-enabled/000-default.conf
  3. Alias not working on Apache2.4

localhost 500 internal server

如果本地有 .htaccess,可能需要修改 Rewritebase /文件夹名称

以上是关于apache httpd.conf alias的主要内容,如果未能解决你的问题,请参考以下文章

apache httpd.conf

httpd.conf文件夹在哪里,需要apache 配置完httpd.conf

Apache主配置文件httpd.conf

Apache主配置文件httpd.conf 详解

Apache主配置文件httpd.conf 详解

如何使用自定义 httpd.conf 文件创建 Apache 服务