2023-06-22 17:59
117
0
0
0
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
2023-06-17 09:31
156
0
0
0
1. 通过浏览器访问 Apache 服务器,在浏览器的地址栏中输入 http://localhost 或 http://127.0.0.1,将会显示 Apache 服务器的欢迎页面,在此页面上可以查看 Apache 的版本信息。
2. 如果 Apache 服务器没有启动,可以查看 Apache 主目录下的版本号文件(一般为 VERSION 或 CHAN
2023-06-17 09:31
163
0
0
0
Apache web服务器是一个开源的、可移植的基于HTTP服务器的软件,用于在Internet上提供Web服务。它可以处理各种不同的网络文档,并给予用户访问网站的权限。Apache可以运行在多种操作系统上,包括Windows、Linux和Mac OS X等。Apache服务器拥有大量的特性,支持多种脚本语言,如PHP、Perl、Python等,以及多种
2023-06-02 13:18
140
0
0
0
Nginx中ThinkPHP项目的伪静态设置
nginx.htaccess
```
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
}
```
nginx中的配置:
```
#nginx配置
location /
2023-06-02 13:11
138
0
0
0
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
2023-06-02 13:08
152
0
0
0
apache 基于域名虚拟主机配置
```
ServerName shop.outobe.com
DocumentRoot /var/www/shop
ErrorLog logs/shop_outobe_com__error_log
```
2023-06-02 13:05
113
0
0
0
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
2023-05-19 21:35
128
0
0
0
Apache中设置默认首页的方法
在你安装后的Apache目录下,有一个conf目录,在这个目录里,有一个"httpd.conf"文件.我们要做的,就是修改这个文件.
比如 /etc/httpd/conf/httpd.conf 在这个文件里,凡是以"#"开头的每一行,都是无效的,如果你想让你的设置起作用,就要把行首的"#"去掉.
找到 Di