• WordPress adds to rewrite rules also this:

    type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$ -> index.php?post_format=$matches[1]&feed=$matches[2]
    type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$ -> index.php?post_format=$matches[1]&feed=$matches[2]
    type/([^/]+)/page/?([0-9]{1,})/?$ -> index.php?post_format=$matches[1]&paged=$matches[2]
    type/([^/]+)/?$ -> index.php?post_format=$matches[1]

    But if I add, for example, /type/post/ or index.php?post_format=post to base url I get 404 error. What are this rules for?

  • The topic ‘Post Type Archive 404 Error’ is closed to new replies.