最新 人气 评论

apache access log [22/Jun/2023:14:21:14 +0800] "-" 408 -

This line of the Apache access log shows an unsuccessful request to a web server. The timestamp is 22/Jun/2023 at 14:21:14 (in the +0800 timezone). The request was made by a user

怎么检查 Apache 及其版本?

1. 通过浏览器访问 Apache 服务器,在浏览器的地址栏中输入 http://localhost 或 http://127.0.0.1,将会显示 Apache 服务器的欢迎页面,在此页面上可以查看 Apache 的版本信息。 2. 如果 Apache 服务器没有启动,可以查看 Apache 主目录下的版本号文件(一般为 VERSION 或 CHAN

什么是Apache web服务器?

Apache web服务器是一个开源的、可移植的基于HTTP服务器的软件,用于在Internet上提供Web服务。它可以处理各种不同的网络文档,并给予用户访问网站的权限。Apache可以运行在多种操作系统上,包括Windows、Linux和Mac OS X等。Apache服务器拥有大量的特性,支持多种脚本语言,如PHP、Perl、Python等,以及多种

Nginx中ThinkPHP项目的伪静态设置

Nginx中ThinkPHP项目的伪静态设置 nginx.htaccess ``` if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s=/$1 last; } ``` nginx中的配置: ``` #nginx配置 location /

apach ssl.conf

apach ssl.conf ``` # # This is the Apache server configuration file providing SSL support. # It contains the configuration directives to instruct the server how to # serve p

apache 基于域名虚拟主机配置

apache 基于域名虚拟主机配置 ``` ServerName shop.outobe.com DocumentRoot /var/www/shop ErrorLog logs/shop_outobe_com__error_log ```

Apache2下网站与SSL证书配置

Apache2下网站与SSL证书配置 ``` DocumentRoot "/var/www/shop" ServerName shop.outobe.com:443 ErrorLog logs/ssl_error_log_shop TransferLog logs/ssl_access_log_shop LogLevel warn SSLE

Apache中设置默认首页的方法

Apache中设置默认首页的方法 在你安装后的Apache目录下,有一个conf目录,在这个目录里,有一个"httpd.conf"文件.我们要做的,就是修改这个文件. 比如 /etc/httpd/conf/httpd.conf 在这个文件里,凡是以"#"开头的每一行,都是无效的,如果你想让你的设置起作用,就要把行首的"#"去掉. 找到 Di
T:0.012148s,M:293.86 KB
返回顶部 留言