07-20-2008, 03:01 PM
|
#2 (permalink)
|
|
The Wanderer
Join Date: Mar 2008
Posts: 20
Thanks: 0
|
If I understand what you want to do correctly I think you want to replace
Code:
RewriteRule ^([^/]+)$ /index.php?tag=%1 [L]
with something like this:
Code:
RewriteRule ^([^/]+)$ http://annoyed.me/?tag=%1 [R=301,L]
I haven't been able to test this out yet, but this should at least get you on the right track.
|
|
|
|