我需要在 /etc/apache2/sites-avaible/default 中更改什么?

我需要在 /etc/apache2/sites-avaible/default 中更改什么?

就像我在 domain.com 上检查我的网站时,如果 wordpress 已解压,则显示其配置一样,因为现在我检查时,它显示 / 的索引,而我的网站位于 /wordpress 中。感谢您的帮助!

答案1

应该可以

DocumentRoot /var/www/wordpress
DirectoryIndex index.php
<Directory /var/www/wordpress>
 Options -Indexes IncludesNOEXEC FollowSymLinks
 Allow from all
 AllowOverride All
</Directory>

相关内容