gpt4 book ai didi

windows - 即使我更改文档根目录的路径,Apache 也会显示它的工作页面

转载 作者:可可西里 更新时间:2023-11-01 10:20:06 24 4
gpt4 key购买 nike

我的问题是,当我放置 wordpress.local.fr 来显示我的 wordpress 的欢迎页面时,它始终显示它的工作页面。

enter image description here

但是当我制作 wordpress.local.fr/wordpress 时它起作用了

enter image description here

这就是我所做的:

ubuntu 服务器的 IP 地址:192.168.52.130

在 etc/apache2/sites-available/wordpress 中

<VirtualHost *:80>
ServerAdmin wordpress.local.fr
DocumentRoot /var/www/wordpress
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>

等/主机:

192.168.52.130 wordpress.local.fr
# The following lines are desirable for IPv6 capable hosts
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters

托管窗口:

192.168.52.130 wordpress.local.fr

wordpress 文件夹包含我的所有文件,没有子文件夹,我使用 samba 在 windows 和 ubuntu 服务器之间共享/var/www/

[Share]
comment = Shared
path = /var/www/
browseable = yes
read only = no
guest ok = yes
writeable = yes

我不知道我哪里错了。我可以检查和更改什么?

编辑

我试图在 fileindex 文件夹中只制作一个 txt 文件而不是我的 wordpress 项目,并在 DocumentRoot/var/www/fileindex 中制作我总是有它的工作页面,所以不考虑 DocumentRoot

我的 htaccess 文件(在我的 wordpress/文件夹中)是:

# BEGIN WordPress
# END WordPress

我已经编辑了我的 htaccess 文件(在我的 wordpress/文件夹中)。对此:

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wordpress/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress

我已将我的 serverAdmin 更改为 serverName :

<VirtualHost *:80>
ServerName wordpress.local.fr
DocumentRoot /var/www/wordpress/
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>

重启apache后还是一样的问题

提前致谢

最佳答案

在你的配置中我看到了

ServerAdmin wordpress.local.fr

ServerAdmin 指令用于在 Apache 遇到错误时接收电子邮件,它应该是

ServerName wordpress.local.fr

关于windows - 即使我更改文档根目录的路径,Apache 也会显示它的工作页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31103389/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com