views:

41

answers:

0

I'm trying to make sure old url's aren't broken after the site's URL structure has changed from this:

to this:

But to make it a bit more complex, I'm using the segments to sort entries, for example:

The new structure only effects one particular event (amazing_event) and should leave the other URL's alone. Where do I even begin to tackle this?

My current .htaccess looks like:

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L]

Thanks - appreciate any tips.