Mortgage News - Cheap Car Insurance - Homeowner Loans - Mortgages - Forex news

PDA

View Full Version : Asp to Php - Mod Rewrite


kusadasi-guy
Dec 25th 2004, 3:21 pm
Hi All;

i would like to move my website to a linux hosting from win hosting. All most all of my pages are .asp pages and i dont want to change the file extensions.

i am sure that a .htaccess file runs my .asp pages as php if i change my asp codes to php.

So, can you help me to build my .htacess file?

xml
Dec 26th 2004, 3:37 am
AddHandler application/x-httpd-php .asp .aspx

kusadasi-guy
Dec 26th 2004, 6:44 am
Thanks XML;

so is it what i need

RewriteEngine on
AddHandler application/x-httpd-php .asp .aspx

xml
Dec 26th 2004, 1:51 pm
I normally go with something like this:

RewriteEngine On

Options +FollowSymlinks

AddHandler application/x-httpd-php .asp .aspx

kusadasi-guy
Dec 26th 2004, 2:05 pm
Thanks for your help, it works great!