我正在Windows 10机器上使用本地安装的Wordpress进行脱机开发,WAMP位于服务器端。
今天早上,我将包含wordpress的文件夹从
c:\\users\\username\\wordpress
至
c:\\users\\username\\otherfolder\\wordpress
我已经修改了vhost。相应地,从
<VirtualHost *>
DocumentRoot "c:\\users\\username\\wordpress"
ServerName test
<Directory "c:\\users\\username\\wordpress">
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
至
<VirtualHost *>
DocumentRoot "c:\\users\\username\\otherfolder\\wordpress"
ServerName test
<Directory "c:\\users\\username\\otherfolder\\wordpress">
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
然而,现在访问本地站点时,我陷入了403错误“禁止您没有访问/此服务器的权限”。此错误发生在正面或背面(wp admin)。
这是的内容。htaccess
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
我是否需要使用phpmyadmin更改数据库中的其他内容?或者permalinks中的一些数据需要调整?