我正在通过以下教程为WordPress开发主题。主页面运行良好,加载自定义帖子类型的帖子,以及页面,以查看cpt的内容也遵循Wordpress命名法:single-{name-cpt}.php
。
问题是我创建一个普通页面。输入页面的网址时,错误页面会显示404.php
。
我已刷新链接结构并验证.htaccess
是否正确。
可能发生什么事情,导致它无法加载page.php
?
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
自定义链接结构:/blog/%postname%/