我是php和WordPress的新手。
我尝试设置VirtualHosts,因为我在多个wp网站上工作,但在这样做之后我的网站没有显示任何CSS,我无法弄清楚如何导航到管理面板再一次,只是一般错误。
sshot:https://imgur.com/w6q6LLT,https://imgur.com/DQOcNVt
我的猜测与路径有关,但是我不知道要改变什么。
这是我的httpd.vhosts:
NameVirtualHost *:80
#
# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for all requests that do not
# match a ##ServerName or ##ServerAlias in any <VirtualHost> block.
#
<VirtualHost *:80>
ServerName wp.market-test.com
DocumentRoot "C:/xampp/htdocs/wp-vs-481"
<Directory "C:/xampp/htdocs/wp-vs-481">
Options Includes FollowSymLinks
AllowOverride All
Allow from 127.0.0.1
</Directory>
</VirtualHost>
任何帮助都会很棒
编辑:删除过时的指令,问题仍然存在。
答案 0 :(得分:0)
我必须在phpadmin配置中更改siteurl / home页面。我的问题主要是由于使用了过时的指南。请务必使用最新指南!
答案 1 :(得分:0)
让我们解决它
可能的原因:
使用弃用语法
将内容移至新服务器
“不推荐使用mod_access_compat提供的Allow,Deny和Order指令。您应该避免使用它们,并避免过时的教程建议使用它们。” < / p>
第1步
使用apache2 -v
OUTPUT 应类似于:
Server version: Apache/2.4.7 (Ubuntu)
Server built: Jul 27 2017 15:20:24
第2步
由于不推荐使用Order deny,allow
,因此截至此日期的更新语法如下:
Require host 1.2.3.4
Require not host 10.0.1.11
Require ip ip-address
Require not host gov
您可以根据需要创建访问控制以符合安全策略。
它刚刚停止更新后才能正常工作? 注意:一个简单的更新可能会从2.4.x升级到最新版本,这将使旧语法无用
要详细了解此信息,请访问Apache Documentation
希望这有帮助。
答案 2 :(得分:0)
请通过更改&#34; 主页&#34;来检查一次。和&#34; siteurl &#34;在 wp_option 表格中。希望如果您从 127.0.0.1/wp-vs-481
将其更改为 wp.market-test.com ,它将会有效