View Single Post
  #9 (permalink)  
Old 04-27-2007, 12:40 PM
webdev webdev is offline
Supreme Babbler
 
Join Date: Apr 2007
Posts: 563
Default

It will be exciting answering php questions

I'm just gonan post the mod_rewrite rule that can be used to change url. i haven't tested this thou.

RewriteEngine On
RewriteRule ^\article\(*)\.html$ /?article=$1 [L]

so basically a url http://www.example.com/?article=123456 will be converted to http://www.example.com/article/123456.html by apache before it shows up on the browser address bar.

hmmm. wouldn't be nice if write tutorials on mod_rewrite as well on my website
Reply With Quote