# This script can be used to redirect old links to their new # address, simply rename it to .htaccess. # # If you get Internal Server Errors after doing that, mod_rewrite # probably installed - you'll need to talk to your systems administrator # and get them to activate it for you. RewriteEngine On # This should be changed to your sites URL, minus the domain. # i.e. http://www.jellybob.co.uk/ = / # http://www.jellybob.co.uk/~jellybob/jaws/ = /~jellybob/jaws/ RewriteBase / RewriteRule ^phoo/(.*)$ data/phoo/$1 [R] RewriteRule ^xml/(.*)$ data/xml/$1 [R] RewriteRule ^files/(.*)$ data/files/$1 [R] AddType 'text/html; charset=UTF-8' html AddType 'text/xml; charset=UTF-8' atom rss xml