Forum Moderators: phranque
I'm using this format:
RedirectMatch permanent ^/dir1/page1.html$ http://www.example.com/dir2/dir3/
RedirectMatch permanent ^/dir4/page4.html$ http://www.example.com/dir5/dir6/
First question: I'm skipping a line between each redirect. Is that right/good, or can I put them like:
RedirectMatch permanent ^/dir1/page1.html$ http://www.example.com/dir2/dir3/
RedirectMatch permanent ^/dir4/page4.html$ http://www.example.com/dir5/dir6/
RedirectMatch permanent ^/dir7/page1.html$ http://www.example.com/dir8/dir9/
etc.
Second, I'll probably have ten of these at most. That should be fine, right? Or will that be "htaccess bloat"?
I'm also thinking of adding hotlinking entries (if there is a way to solve the Norton issue I keep runinng into), so I'm just wondering if there is a rule of thumb for lines in htaccess or size of the file or anything like that. Thanks.