WP生成错误的永久链接

时间:2016-06-28 08:19:05

标签: wordpress permalinks

我遇到问题自定义帖子类型永久链接。这是我的错误:

我的帖子名称是“wordpress论坛”永久链接应该是: http://example.com/custom-post-type/wordpress-forum/但它总是产生如下:

http://example.com/custom-post-type/something/
example.com/custom-post-type/something-1/
example.com/custom-post-type/something-2/

不从帖子名称生成。

请帮我解决。

由于

1 个答案:

答案 0 :(得分:0)

将以下配置放入.htaccess文件

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /dreams/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /dreams/index.php [L]
</IfModule>

然后,在设置perm链接选项期间,我选择自定义结构并给出/index.php/%postname%