Loading...
1.禁止显示 index of目录 编辑http.conf文件 ```shell 找到: Options indexes FollowSymLinks 改为: Options FollowSymLinks ``` 2.Apache添加多端口 编辑http.conf文件 在Listen 80处另起一行输入 ```shell Liste...
1.进入Apache编辑httpd.conf文件 2.找到#LoadModule rewrite_module modules/mod_rewrite.so 改为 ```shell LoadModule rewrite_module modules/mod_rewrite.so ``` 3.找到 ```shell # AllowOverride controls...
1.进入Apache编辑httpd.conf文件 1、增加下面内容 ```shell AddType application/x-httpd-php .php .phtml #以php结尾的,交给php处理 AddType application/x-httpd-php-source .phps ``` 找到DirectoryIndex index.h...
# Linux搭建Apache 1.安装APR,APR-util,PCRE,expat,gcc,gcc-c++的依赖 ARP和APR-util在http://apr.apache.org/download.cgi 这里下载 PCRE在https://pcre.org 这里下载 expat使用yum安装 ```shell yum install -y expat-devel* `...