使用以下帖子:
我已将/etc/apache2/apache2.conf
文件更改为以下内容:
<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory
我已将文件/var/www/html/.htaccess
创建为以下内容:
DirectoryIndex Index.php index.php Index.html index.html Index.htm index.htm
当我访问我的网站时,默认页面仍然是(It Works!)index.html文件。
如何配置Apache以优先考虑index.php?
答案 0 :(得分:1)
您的DocumentRoot /var/www/
或/var/www/html/
(后者是您说的.htaccess
文件的位置)??
如果.htaccess
在/var/www/html/
之内,我猜你需要将Apache配置更新为:
<Directory /var/www/html/>