rewrite rule for files in sub category?

New to mod_rewrite? This is a good place to start.

rewrite rule for files in sub category?

Postby greatlogix » Mon Jul 06, 2009 12:00 am

I want to rewrite following url

www.example.com/news/article.php?title=some-title&id=3

to

www.example.com/news/some-title-3.htm

Note: /news/ is physical dir. article.php is in news/ dir.

Is it possible?

How?
greatlogix
 
Posts: 3
Joined: Sun Jul 05, 2009 11:55 pm

Postby richardk » Mon Jul 06, 2009 12:16 pm

In a .htaccess file in /news
Code: Select all
Options +FollowSymLinks

RewriteEngine On

RewriteRule ^([^/]+)-([0-9]+)\.htm$ /news/article.php?title=$1&id=$2 [QSA,L]
richardk
 
Posts: 8800
Joined: Wed Dec 21, 2005 7:50 am

Postby greatlogix » Tue Jul 07, 2009 10:05 pm

Thanks richardk for your kind help

Its working. :) :D :)
greatlogix
 
Posts: 3
Joined: Sun Jul 05, 2009 11:55 pm


Return to Beginner's Corner

Who is online

Users browsing this forum: No registered users and 106 guests

cron