apache httpd.conf 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中的配置也是一样的
如果本地有 .htaccess,可能需要修改 Rewritebase /文件夹名称
标签:httpd,conf,MultiViews,apache2,alias,allow,apache,Indexes 来源: https://www.cnblogs.com/fsong/p/11336921.html