How can I make the following pages on my site:
http://www.site.com/video.php?id=12345
Redirect/Go to:
http://www.site.com/title-goes-here
Thanks in advance!![]()
| SitePoint Sponsor |
How can I make the following pages on my site:
http://www.site.com/video.php?id=12345
Redirect/Go to:
http://www.site.com/title-goes-here
Thanks in advance!![]()




You would get better help in the Apache forums.
Creativity knows no other restraint than the
confines of a small mind. - Me
Geekly Humor
Oh baby! Check out the design patterns on that framework!


RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^/?([0-9]+)/[a-z0-9_-]+/?$ video.php?id=$1
Bookmarks