Skip to content

Instantly share code, notes, and snippets.

@CapWebSolutions
Last active March 15, 2022 14:42
Rules for basic WordPress URL rewriting in Screaming Frog.
/**
* WordPress URL rewriting rules for Screaming Frog Spider
* @author Matt Ryan - https://capwebsolutions.com
* @date 2022-03-15
*/
// Nav: Configuration | URL Rewriting
// Replacing:
// https://example/com/blog/page/2/
// https://example.com/category/blog/page/3
// with:
// https://example.com/blog/page/1/
// https://example.com/category/blog/page/1/
//
Regex: /page/\d+/
Replace: /page/1/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment