wordpress 首页可以显示,其他链接不能找到服务器的设置

在wordpress 后台的Permalink Settings设置中使用custom Structure时,出现首页可以显示,其他页面的链接都无法找到服务器的问题,解决方法是:

1.检查。htaccess文件:

 

  
  
  
  
  1. BEGIN WordPress 
  2. <IfModule mod_rewrite.c> 
  3. RewriteEngine On 
  4. RewriteBase /website/ 
  5. RewriteRule ^index\.php$ - [L] 
  6. RewriteCond %{REQUEST_FILENAME} !-f 
  7. RewriteCond %{REQUEST_FILENAME} !-d 
  8. RewriteRule . /website/index.php [L] 
  9. </IfModule> 
  10.  
  11. END WordPress 

2.检查apache / conf /httpd 配置文件中有没有开启 mod_rewrite 模块。

你可能感兴趣的:(职场,word,Office,休闲,Permalink,mod_rewrite)