小小泥娃 发表于 2018-7-12 20:03:28

wordpress 用户页面 url问题

wp系统模板点击用户名会访问到 domain.com/author/username 这个地址,得到 404 结果。
而手动访问 domain.com/?author=username 却能正常显示

.htaccess 文件是 wp 自动生成的
内容为
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ -
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php
</IfModule>

mrjoel 发表于 2018-7-12 20:16:15

小小泥娃 发表于 2018-7-12 20:22:31

mrjoel 发表于 2018-7-12 20:16
伪静态

将 /author/ rewrite 到 /?author= 吗?
使用系统主题为什么会出现这种问题呢?

京东 发表于 2018-7-12 20:34:15

hzwill 发表于 2018-7-12 20:36:40

后台固定链接是不是自定义的。
页: [1]
查看完整版本: wordpress 用户页面 url问题