我通过将自定义结构更改为:
/%postname%/
现在,当我单击页面链接时,它会将我带到 domain.com/postname,但我收到 404 错误。进行一些挖掘表明我需要设置 301 重定向,但我对如何执行此操作感到困惑。我已经编辑了我的 .htaccess 文件——它现在看起来像:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /mgassoc/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /mgassoc/index.php [L]
</IfModule>
# END WordPress
谁能帮我解决我做错的事情?