树莓派 3B+ 4B Apache2 开启伪静态

in 学习笔记 with 0 comment

第一步:先执行加载rewrite模块

sudo a2enmod rewrite

第二步:修改Apache2.conf

sudo nano /etc/apache2/apache2.conf

寻找到一下代码:

Options Indexes FollowSymLinks

AllowOverride None

Require all granted

改成

Options Indexes FollowSymLinks

AllowOverride All

Require all granted

第三步:重启apache2

sudo service apache2 restart

如过更换了目录吧新目录也写一下 如下:

Options Indexes FollowSymLinks
AllowOverride ALL
Require all granted

/var/www/XXX/ 是新目录的地址。

Responses