我正在尝试设置Zend Expressive并遵循本教程: https://zend-expressive.readthedocs.io/en/latest/cookbook/using-a-base-path/
在我看来,我的mod_rewrite指令没有被尊重
如何确保Apache在我的.htaccess
文件中遵守指令?
答案 0 :(得分:0)
将此添加到Apache配置文件并重新启动apache服务似乎正在使其工作:
<Directory /var/www/html>
AllowOverride All
Require all granted
</Directory>