Ubuntu 服务器开启 Apache2 地址伪静态支持
系统:Ubuntu 22.04
Apache:2.4.52
安装 Apache2
sudo apt install apache2 apache2-utils
开启伪静态模块支持
sudo a2enmod rewrite
设置网站参数
打开网站参数设置文件
sudo vi /etc/apache2/sites-available/your-site.conf #默认是 000-default.conf
添加伪静态支持
在上面文件 VirtualHost
内添加:
<Directory /var/www/html/your-site-directory>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
重启 Apache2
sudo systemctl restart apache2