I am converting a site from asp to php. I don't want to lose the indexing in the SE's and I would like to use the htaccess file to create a 301 redirect from "xyz.asp" to "xyz.php". But I have no idea how to do so. Can this even be done?
It can be done. Here is a simple example: Options +FollowSymlinks RewriteEngine on RewriteRule ^(.*)\.asp$ http://www.your_domain.com/$1.php [L,R=301] Code (markup): Jean-Luc