gpt4 book ai didi

wordpress - 为完美的 Wordpress 环境配置 VirtualHost

转载 作者:行者123 更新时间:2023-12-04 23:56:14 28 4
gpt4 key购买 nike

关闭。这个问题是off-topic .它目前不接受答案。












想改善这个问题吗? Update the question所以它是 on-topic对于堆栈溢出。

8年前关闭。




Improve this question




我正在尝试在带有机架空间的云服务器中安装 wordpress。

但是我对服务器配置(LAMP 等)的缺乏了解使我做了很多未完成的配置。

首先我认为 .httaccess 是不允许的。
其次,不允许更新 Wordpress 和特色插件
第三个可能是更多的数字......

让我展示我的虚拟主机文件:

    <VirtualHost *:80>
# Admin email, Server Name (domain name) and any aliases
ServerAdmin adrian@my.com
ServerName my.com
ServerAlias www.my.com


# Index file and Document Root (where the public files are located)
DirectoryIndex index.html, index.php
DocumentRoot /home/devdreams/domains/my.com/public


# Custom log file locations
LogLevel warn
ErrorLog /home/devdreams/domains/my.com/log/error.log
CustomLog /home/devdreams/domains/my.com/log/access.log combined

<Directory />
Options FollowSymLinks
AllowOverride All
Order deny,allow
Deny from all
Satisfy all
</Directory>

AccessFileName .htaccess


<Directory /home/devdreams/domains/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>


ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>

Alias /doc/ "/usr/share/doc/"

<Directory "/usr/share/doc/">
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>

LoadModule rewrite_module modules/mod_rewrite.so


</VirtualHost>

有人可以帮我为 wordpress 环境配置我的 VH

塔克斯

最佳答案

您的 .htaccess 将不起作用,因为您有 AllowOverride None ,将其更改为 AllowOverride All
就能够更新 Wordpress 和插件而言,您需要将文件/目录的所有权更改为运行网络服务器的用户。例如:chown -R apache:apache /home/devdreams/domains/

关于wordpress - 为完美的 Wordpress 环境配置 VirtualHost,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15980427/

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