当前位置: 代码迷 >> 综合 >> wordpress中解决页面未找到的问题
  详细解决方案

wordpress中解决页面未找到的问题

热度:50   发布时间:2024-02-28 17:05:51.0

1 在根目录下新建.htaccess

2 写入如下配置

# 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

 

  相关解决方案