码迷,mamicode.com
首页 > Web开发 > 详细

apache httpd.conf alias

时间:2019-08-11 23:05:52      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:pac   git   rewrite   access   html   apache   directory   not work   work   

参考 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

标签:pac   git   rewrite   access   html   apache   directory   not work   work   

原文地址:https://www.cnblogs.com/fsong/p/11336921.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!