Forum Moderators: phranque
I can't figure out what is wrong with this statement in my .htaccess file
# Externally redirect client requests for old dynamic URLs to equivalent new static URLs
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /Books-Software/([^&]+)/\ HTTP/
RewriteRule ^/Books-Software/$ [mysite.com...] [R=301,L]
Also, your RewriteCond will match faster if you change the pattern to
^[A-Z]{3,9}\ /Books-Software/([b][^/]+[/b])/\ HTTP/
Jim