我有一个网站,并将其传递给另一台服务器。我使用永久链接day and name
。当我尝试访问任何页面时,都会收到此消息:
The resource you are looking for has been removed, had its name changed, or is temporarily unavailable.
如果我将永久链接更改为plain
,则可以,但是我需要在day and name
中进行设置
我不知道那是什么问题。
我该如何解决?
答案 0 :(得分:0)
看看wordpress文件/目录中的chmod https://codex.wordpress.org/Changing_File_Permissions
她可能会访问我的东西。 https://codex.wordpress.org/htaccess
答案 1 :(得分:0)
作为我的WordPress经验,我建议首先将永久链接设置为默认值……并检查是否一切正常?还可以尝试构建其他永久链接选项吗?
如果以上两种方法都能正常工作,则编写您的自定义永久链接.. 如果上述展位不起作用,则必须检查“域的重写”选项,它必须允许 .htaccess 修复,只需替换.htaccess文件https://codex.wordpress.org/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
这个简单的技巧将解决您的问题...不要忘记清除缓存