cron-eu / cron-sluggy
Slug re-generator
Installs: 1 354
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 1
Open Issues: 0
Type:typo3-cms-extension
Requires
- ext-pdo: *
- typo3/cms-core: ^11.5 || ^12.4 || ^13.4
- dev-master
- 2.0.1
- 2.0.0
- 1.4.0
- 1.3.0
- 1.2.1
- 1.2.0
- 1.1.2
- 1.1.1
- 1.1.0
- 1.0.0
- dev-release/2.0.1
- dev-fix-redirects-option
- dev-fix-for-multilinguality
- dev-release-2.0.0
- dev-typo3-13
- dev-multilinguality
- dev-fix-doktype-exclusion
- dev-nicer-output
- dev-csv-export-dry-run
- dev-fix-php83
- dev-siteroot
- dev-vendor-cron-eu
This package is auto-updated.
Last update: 2025-03-17 20:41:45 UTC
README
Features:
- Batch regeneration of page slugs CLI tool
- Add an "URL path segment" field to overwrite the string that would be generated from the page title (supports b13/masi exclude while doing that)
- Option to remove slash ("/") from being added to a slug segment for a page
Regenerates Slugs for a whole subtree of pages, optionally generate redirect for changed slugs.
Installation
Configure settings in Extension Configuration:
slash_remove
(boolean): defaults to "1", if you want to remove slashes from page url slugsenable_pathsegment
(boolean): defaults to "1" to add a new field to the pages module where you can overwrite the URL segment for this page (like RealURL used to have)pages_slugfields
(string): comma separated list of fields to consider when creating the slug for a page (defaults totx_cronsluggy_pathsegment,title
).
Usage
bin/typo3 sluggy:regenerate [-d|--dry-run] [-r|--redirects [REDIRECTS]] [-f|--format [FORMAT]] [--] <root-page> <language>
-d, --dry-run do not change anything
-r, --redirects[=REDIRECTS] create redirects for changed slugs with this TTL in days
• [default: 30]
-f, --format[=FORMAT] print output as "plain", "csv" or "html"
• [default: "plain"]
Examples
New slugs for all pages starting at root page 420, and create redirects:
bin/typo3cms sluggy:regenerate -r -- 420
New slugs for all pages starting at root page 420, and create redirects which expire in 10 days:
bin/typo3cms sluggy:regenerate -r 10 -- 420
Just show slugs for pages starting at root page 420 which would be created
bin/typo3cms sluggy:regenerate --dry-run -- 420