我构建了一个小项目,它在Localhost中工作正常,但由于Apache配置文件中的某些配置而没有在Share Hosting中工作。 由于此托管服务不允许访问 httpd.conf 文件,因此我只能使用.htaccess文件来执行此操作。
我在本地环境中的配置:
<Directory "/path/to/the/site/directory/">
Options Indexes
FollowSymLinks MultiViews
AllowOverride All
Require all granted
</Directory>
我尝试使用如下的htaccess文件:
Options -Indexes
FollowSymLinks MultiViews
AllowOverride All //seems not to be working
Require all granted
如果有人能提供帮助,我将非常感激。非常感谢。