我使用angular2和WP-REST API为我的wordpress网站构建了一个模板,现在我有一个工作版本(link),但我遇到了问题。当我在自定义路由(而不是主页)上打开页面时,会出现404错误,但使用路由器链接可以按我的意愿工作。 澄清:
我的.htacces
文件是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>
并且我在我的wp后端使用/%postname%/ permalink cfg
答案 0 :(得分:0)