yycvip 发表于 2023-6-24 22:54:35

Ubuntu下开启apache2的Rewrite模块

开启apache扩展模块

如果你需要使用apache的url重写功能,需要配置文件中启用apache的Rewrite模块:
通过将 /etc/apache2/mods-available/rewrite.load 连接到 /etc/apache2/mods-enabled/rewrite.load 来打开 Mod_rewrite 模块。用指令操作就是:
sudo ln -s /etc/apache2/mods-available/rewrite.load /etc/apache2/mods-enabled/rewrite.load另外,将虚拟主机配置中的 AllowOverride None 修改为 AllowOverride All
最后,重启Apache2服务器。
vi /etc/apache2/apache2.conf

重启Apache2服务器
service apache2 restart

yycvip 发表于 2023-6-24 22:55:25

或者使用以下命令


a2enmod rewriteservice apache2 restart

页: [1]
查看完整版本: Ubuntu下开启apache2的Rewrite模块