Mark Jones
Mark Jones

Reputation: 115

remove numeric suffix

The scenario

We are moving an old site to a new joomla site The old links need to line up to all work, they pritty much do this exept for the following issue

the issue

The old links /people/this-person-in-question-213

needs to now be

/people/this-person-in-question

losing the " -213 "

we need to build a htaccess line to do this! but have yet to make a working one

Upvotes: 1

Views: 69

Answers (1)

anubhava
anubhava

Reputation: 784908

Put this code in your old site's DOCUMENT_ROOT/.htaccess file:

RedirectMatch 301 ^(.+?)-[0-9]+$ $1

Upvotes: 2

Related Questions