Are those RRs ok to rewrite old urls from an old script to a new one I've moved recently?
RewriteEngine On
RewriteRule ^photos/(?:original|large|medium)/(.*)\.jpg$ pictures/$1.jpg
RewriteRule ^photos/(?:small|thumb)/(.*)\.jpg$ thumbnails/$1.jpg
RewriteRule ^photos/show/[0-9]+/[0-9]+/?$ index.php
In the old server I had several sizes, hence the original, large, medium, small and thumb folders. In the new server I only have pictures and thumbnails.
The last rule is for redirecting an invalid old style url.
Could be those ruls be optimized in some way?
Thank you.