• 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
    成功证明伪静态开启

  • 相关阅读:
    Go学习(5):集合
    Go学习(4):数组和切片
    Go学习(3):分支循环
    Go学习(2):基本语法
    Go学习(1):简介和配置
    input输入框只能输入数字而且开头不能为零
    JS 显示周 几和 月 日
    IntelliJ Idea 跳出括号并且光标移到末尾的快捷键
    不可小视的String字符串
    PrintWriter中的write与println方法居然就是这些区别
  • 原文地址:https://www.cnblogs.com/gaoyuanzhi/p/8269468.html
Copyright © 2020-2023  润新知