WordPress永久链接404错误

时间:2014-12-06 作者:nobi malik

使用默认永久链接设置“/?p=123“对我来说,每一个页面都很好,它显示的网站URL如下:“//mywebsite/solutions/?page\\u id=580”

当我将其更改为/%postname%/或除永久链接的默认设置之外的任何其他类别时,会出现以下错误“找不到错误页”

我的根文件夹中的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
谢谢,如有任何帮助,我们将不胜感激

1 个回复
SO网友:Dipak G.

你能试着换一个吗。htaccess是否具有以下功能?看起来您已将WordPress安装在名为“解决方案”的子文件夹中。

# BEGIN WordPress
RewriteEngine On
RewriteBase /solutions/
RewriteRule ^index\\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /solutions/index.php [L]
# END WordPress

结束

相关推荐

Custom permalinks structure

我希望有这样的结构:www.mysite.com/2013 (必须显示2013年的所有职位)www.mysite.com/my-category/2013 (必须显示2013年和“我的类别”类别的所有帖子)www.mysite.com/my-category/my-tag/ (必须显示所有类别为“我的类别”和标记为“我的标记”的帖子)www.mysite.com/my-category/ (必须显示“我的类别”类别的所有帖子)www.mysite.com/my-