我正在使用hostgator Linux共享主机。我想使用.htaccess文件
进行Allowoverride All基本网址 - / home / domain_name / public_html
当我尝试
时<Directory /home/domain_name>
AllowOverride All
</Directory>
抛出500内部服务器错误
答案 0 :(得分:0)
500错误是因为Directory
指令仅在2个上下文中被允许,即:server config和virtual host config。
对Apache中可用的不同类型的配置部分进行this document。
答案 1 :(得分:0)
如果您使用共享托管,并且您的apache版本大于2.4,则
转到所有.htaccess(your_magento_setup / .htaccess,pub / .htaccess) 那么您只需在两个htaccess中完全注释此标签即可。
<IfVersion >= 2.4>
您的magento 2设置正常运行。