首頁  >  文章  >  後端開發  >  烏版圖怎麼去掉index.php

烏版圖怎麼去掉index.php

藏色散人
藏色散人原創
2021-06-10 10:04:561757瀏覽

乌版图去掉index.php的方法:1、在项目根目录创建“.htaceess”文件;2、复制“000-dedault.conf”文件并重命名;3、创建配置文件;4、开启apache2的更新模块;5、重启apache2即可。

烏版圖怎麼去掉index.php

本文操作环境:ubuntu 16.04系统、PHP7.1版,DELL G3电脑

乌版图怎么去掉index.php?

Ubuntu 16.04 本地 php 项目访问地址移除 index.php

1.在项目跟目录创建.htaceess文件,内容如下:

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]

2.在/etc/apache2/site-avalible文件夹中复制000-dedault.conf文件,重命名为你的项目.conf,如下:

cp 000-default.conf mysite.conf

并增加以下内容:

<VirtualHost *:80>
        ServerName www.mysite.com
        ServerAdmin webmaster@localhost
        DocumentRoot /home/www/mysite
        <Directory /home/www/mysite>
                Options Indexes FollowSymLinks
                AllowOverride All
                Require all granted
                Order allow,deny
                allow from all
        </Directory>
</VirtualHost>

3.创建配置文件连接,把新建的配置文件激活什么东西巴拉巴拉(当前目录站点-可用)

sudo a2ensite mysite.conf

4.运行以下命令,开启apache2的更新模块

sudo a2enmod rewrite [重要]

5.重启apache2

systemctl restart apache2.service

【推荐学习:PHP视频教程

以上是烏版圖怎麼去掉index.php的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn