PDA

View Full Version : 301 redirect help pls


suthra
12-07-2005, 01:33 AM
Options +Indexes
Options +FollowSymlinks
RewriteEngine On
RewriteBase /
RewriteRule ^india-properties/rent-properties\.html$
http://www.indiaproperty.com/index.php?option=listing&page=createlisting&transaction=rent
[R=301,L]

Why is this not working when i type
indiaproperty.com/india-properties/rent-properties.html

It redirects to the old page :(

suthra
12-09-2005, 12:37 AM
I also tried like this:

#orginal url:
#http://www.indiaproperty.com/index.php?option=listing&page=createlisting&transaction=rent

What might be the problems in this rewrite rule:


The rewritten code in .htaccess:
=====================
Options +Indexes
Options +FollowSymlinks
RewriteEngine On
RewriteBase /

RewriteCond %{QUERY_STRING}
^option=listing&page=createlisting&transaction=rent

RewriteCond %{REQUEST_URI} ^/index\.php.*

RewriteRule .* http://www.indiaproperty.com/india-properties/rent-properties.html [R=301,L]

=====================

Still the url is not working :(