
05-09-2006, 07:23 AM
|
 |
SEO
|
|
Join Date: Feb 2006
Posts: 382

|
|
.htaccess
I'm trying to discover .htaccess using my blog: lovethepoem.com/poemblog
this is the exact .htaccess code that I'm using inside the directory so I can turn the database records in HTML directories..
The exact url that I want to redirect is
lovethepoem.com/poemblog/index.php?itemid=4
I want to redirect it to lovethepoem.com/poemblog/rubies/
RewriteEngine on
Options +FollowSymLinks
RewriteEngine On
RewriteRule ^([a-zA-Z0-9_-]+)$ index.php?itemid=$4 [R=301,L]
However, NOTHING seems to be happening..
What's wrong ?
|