域内部错误和permanlink问题

时间:2016-03-18 09:35:19

标签: wordpress

我在godaddy有5个域名的托管帐户。它们都在 WordPress 中。当我在主域上安装 WordPress 时,其他域名就会拍摄:

  

500内部服务器错误

特别是当我在/%postname% /上设置永久链接时。

现在主域的永久链接是普通的

请帮忙。

1 个答案:

答案 0 :(得分:0)

尝试使用默认.htaccess代码编辑.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

我有类似的问题。这解决了我的问题。