Forum Moderators: phranque
I have spent ages looking at forums and the posts on this one and nothing seems to work.
I want to redirect traffic from http://www.example.com/racing games to http://www.example.com/car-games
This is the latest code I have tried:
RewriteEngine On # Turn on the rewriting engine
RewriteRule ^free-online-games-player/racing-games.html/?$ http://www.example.com/car-games.html/ [R=301,NC,L] # Permanent Move
By not work I mean, the traffic is not redirected, there are no errors.
Thanks
[edited by: jdMorgan at 2:28 pm (utc) on Sep. 11, 2008]
[edit reason] Use example.com please [/edit]
# Turn on the rewriting engine
RewriteEngine on
#
# Permanent Move
RewriteRule ^racing-games\.html/?$ http://www.example.com/car-games.html [NC,R=301,L]
See our Forum Charter and the mod_rewrite documentation at apache.org for more information.
Jim