views:

18

answers:

1
+1  Q: 

Htaccess redirect

Does anyone have a simple way of rdirected in .htaccess all pages that were once .asp to now be .php. For example index.asp is now index.php etc. Server is apache.

+4  A: 
RewriteEngine on
RewriteRule ^(.+)\.asp$ $1.php
reko_t