📜  每个帖子 wp 错误 404 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:13.105000             🧑  作者: Mango

代码示例1
# BEGIN WordPress

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

# END WordPress