apache 文件使用什么语言?

问题描述 投票:0回答:3

httpd.conf 和虚拟主机等 apache 文件中使用的语言名称是什么

# Ensure that Apache listens on port 80
Listen 80
<VirtualHost *:80>
    DocumentRoot "/www/example1"
    ServerName www.example.com

    # Other directives here
</VirtualHost>
apache scripting-language
3个回答
3
投票

IDE 的最佳突出显示设置(如果您指的是这个目的)可能是:

  • Tcl 用于 .conf 文件
  • Lisp 用于 .ini 文件

1
投票

官方文档将它们称为“httpd配置文件”或简称“配置文件”。我认为没有比这更具体的名称了。


0
投票

Apache 配置文件(和 htaccess 文件)是用 Perl 兼容正则表达式 (PCRE) 语言的 Apache 指令变体 编写的。学习基本的 PCRE 本身可以帮助掌握这些文件的工作。

参考: https://en.wikipedia.org/wiki/.htaccess#Format_and_language

© www.soinside.com 2019 - 2024. All rights reserved.