zoukankan      html  css  js  c++  java
  • linux+Apache开启伪静态配置

    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.rpm
    2.安装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.conf

    <IfModule dir_module>
    DirectoryIndex index.html index.php  #添加index.php 使支持.php文件
    </IfModule>

    [root@localhost ~]# systemctl restart httpd
    二、伪静态开启
    访问http://localhost/;在PHP的信息页中的apache2handler字段搜索是否有mod_rewrite字段,如果有进行下一步
    开启重写功能 AllowOverride none 改为 AllowOverride ALL;
    [root@localhost html]# vi /etc/httpd/conf/httpd.conf

    <Directory "/var/www/html">
    ...
    Options Indexes FollowSymLinks
    ...
    AllowOverride ALL
    ...
    Require all granted
    </Directory>

    [root@localhost html]# systemctl restart httpd 

    三、测试是否成功
    [root@localhost html]# touch .htaccess

    [root@localhost html]# cat /var/www/html/.htaccess 
    RewriteEngine on
    RewriteRule index.html index.php

    访问http://127.0.0.1/index.html
    成功证明伪静态开启

  • 相关阅读:
    ubuntu查看系统负载和程序运行状况
    ubuntu 离线装包
    python如何离线装包 离线如何部署python环境
    开发板上如何配置apahe2+mysql+php7
    c++指针实例
    nginx反向代理nginx,RealServer日志打印真实ip
    lvs+keep搭建高可用web服务
    linux一键安装vncserver脚本
    ansible 学习与实践
    centos7编译安装MySQL5.7.9
  • 原文地址:https://www.cnblogs.com/gaoyuanzhi/p/8269468.html
Copyright © 2011-2022 走看看