Ubuntu18.04 apache2配置ThinkPHP6

Posted garfieldtom

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu18.04 apache2配置ThinkPHP6相关的知识,希望对你有一定的参考价值。

1.修改apache2的配置文件 /etc/apache2/apache2.conf

修改根目录和AllowOverride权限

<Directory /home/ubuntu/thinkphp/tp6/think/public/>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>

 

2.修改/etc/apache2/sites-available/000-default.conf中的根目录

 

DocumentRoot /home/ubuntu/thinkphp/tp6/think/public

 

3.修改ThinkPHP public目录下的.htaccess文件:

<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
#RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
</IfModule>

 

4.执行

sudo a2enmod rewrite

 

5.重启服务

 

sudo service apache2 restart

 

可以这样访问了:

http://111.229.200.158/Index/myhello

 

注意,自带的hello因为路由问题不能http://111.229.200.158/Index/hello这样访问

以上是关于Ubuntu18.04 apache2配置ThinkPHP6的主要内容,如果未能解决你的问题,请参考以下文章

ubuntu18.04下安装apache+php7

LAMP搭建Web网站过程中的记录Ubuntu18.04+Apache2.4+PHP7.2+MySQL5.7

Ubuntu18.04卸载lnmp

Ubuntu18.04下基于apache2部署Zend Framework 3 MVC框架含BUG/问题解决)

ubuntu18.04 LAMP DVWA

Ubuntu18.04下搭建LAMP环境