linux+Apache伪静态配置
一、环境准备:
CentOS Linux release 7.4.1708 (Core)1.配置源[root@localhost ~]#yum install -y epel-release[root@localhost ~]#rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm2.安装php7[root@localhost ~]#yum install php70w.x86_64 php70w-cli.x86_64 php70w-common.x86_64 php70w-gd.x86_64 php70w-ldap.x86_64 php70w-mbstring.x86_64 php70w-mcrypt.x86_64 php70w-mysql.x86_64 php70w-pdo.x86_64 -y[root@localhost ~]# rm -rf /etc/httpd/conf.d/welcome.conf
[root@localhost ~]# echo "<?php phpinfo();?>" > /var/www/html/index.php[root@localhost ~]# vi /etc/httpd/conf/httpd.confDirectoryIndex index.html index.php #添加index.php 使支持.php文件
[root@localhost ~]# systemctl restart httpd
二、伪静态开启访问http://localhost/;在PHP的信息页中的apache2handler字段搜索是否有mod_rewrite字段,如果有进行下一步开启重写功能 AllowOverride none 改为 AllowOverride ALL;[root@localhost html]# vi /etc/httpd/conf/httpd.conf...Options Indexes FollowSymLinks...AllowOverride ALL...Require all granted
[root@localhost html]# systemctl restart httpd
三、测试是否成功
[root@localhost html]# touch .htaccess[root@localhost html]# cat /var/www/html/.htaccess RewriteEngine onRewriteRule index.html index.php
访问http://127.0.0.1/index.html
成功证明伪静态开启