首页域名资讯 正文

Apache服务器下SSI服务配置详细解说 – Apache

2025-01-05 4 0条评论

我们需要在  Apache/conf/extra/ 目录下建立一个 httpd-vhosts.conf
这样的文件。

文件内容如下:

# ../vhosts 是你的网站目录

Options -Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
Directory>

NameVirtualHost *

DocumentRoot ../vhosts
ServerName defalut:80
ErrorLog logs/defalut-error_log
VirtualHost>

#因为有可能你有多个站点,针对每个站点在vhosts下建立不同的目录比如 c:/vhosts/javapeixun

Allow from all
Directory>

#这段是用来配置域名的哦。

ServerAdmin admin@trustauth.cn
DocumentRoot c:/vhosts/javapeixun
ServerName trustauth.cn:80
ServerAlias www.trustauth.cn
ErrorLog logs/trustauth.cn-error_log
VirtualHost>

#这里就是用来配置 SSI 的。

AddOutputFilterByType INCLUDES;DEFLATE text/html
AddType text/html .html .htm .shtml .ssi
AddHandler server-parsed .shtml .html .htm .shtm
# AddHandler cgi-script cgi
Options Indexes MultiViews Includes
AllowOverride None
Order allow,deny
Allow from all
Directory>

编辑 Apacheconf 目录下的httpd.conf。

在文件末尾添加

Include conf/extra/httpd-vhosts.conf

然后重启 Apache 就OK 啦。

Apache 就是这样配置 SSI 和域名的。

文章版权及转载声明

本文作者:亿网 网址:https://edns.com/ask/post/163424.html 发布于 2025-01-05
文章转载或复制请以超链接形式并注明出处。