Web Hosting Talk







View Full Version : .htaccess redirect for dynamic pages


QiQ - QiQ
05-18-2009, 08:57 PM
I wonder if someone could point me in the right direction to create an .htaccess file that I can place in the directory "http://www.domain.com/news" that will have the end result of directing traffic from:

http://www.domain.com/news/news_article.asp?News_ID=3000

to:

http://www.domain.com/?p=3000


The news ID of 3000 is just an example - it could be any number from about 1 - 8000. The new server does not support ASP, the content is now PHP based.

Thanks.

awatson
05-20-2009, 02:41 PM
Should be something along these lines:


RewriteEngine On
RewriteRule ^News_ID=(.*) http://www.domain.com/?p=$1 [R=301,L]

HivelocityDD
05-20-2009, 06:58 PM
Check this link

http://www.webweaver.nu/html-tips/web-redirection.shtml