DotDragnet
May 23, 2012, 09:11:53 AM *
Welcome, Guest. Please login or register.

Login with username, password and session length
News: follow us on twitter @dotdragnet
 
   Home   Help Search Login Register  
Pages: [1]   Go Down
  Print  
Author Topic: .htaccess question  (Read 989 times)
Jeep Stone
Hero Member
*****
Posts: 908



View Profile WWW Awards
« on: February 12, 2009, 11:55:54 AM »

I want to match to a load of URLs on an old site and redirect to one on a new site, but this isn't working (no redirect). Can anyone spot any problems?

Code:
Options +FollowSymlinks
RewriteEngine On
RewriteBase /


RewriteCond %{QUERY_STRING} ^section=buy$ [OR]
RewriteCond %{QUERY_STRING} ^section=faqs$ [OR]
RewriteCond %{QUERY_STRING} ^section=section=what_is_floodsentry$ [OR]
RewriteCond %{QUERY_STRING} ^section=uses$ [OR]
RewriteCond %{QUERY_STRING} ^section=apply$ [OR]
RewriteCond %{QUERY_STRING} ^section=technical$ [OR]
RewriteCond %{QUERY_STRING} ^section=kitemark$ [OR]
RewriteCond %{QUERY_STRING} ^section=trade$ [OR]
RewriteCond %{QUERY_STRING} ^section=trade_design$ [OR]
RewriteCond %{QUERY_STRING} ^section=trade_revenues$ [OR]
RewriteCond %{QUERY_STRING} ^section=trade_value$ [OR]
RewriteCond %{QUERY_STRING} ^section=trade_company$ [OR]
RewriteCond %{QUERY_STRING} ^section=trade_glance$ [NC]
RewriteRule ^/index.php$ http://www.floodstoppersuk.com/product/7/air-brick-seal-flood-sentry-sandbag-replacement-pack-of-2/$1? [R=301,L]



Logged

Jeep Stone
Hero Member
*****
Posts: 908



View Profile WWW Awards
« Reply #1 on: February 12, 2009, 04:47:47 PM »

Sorted:

Code:
Options +FollowSymlinks
RewriteEngine On
RewriteBase /

## Match specific product pages
RewriteCond %{QUERY_STRING} ^section=buy [OR]
RewriteCond %{QUERY_STRING} ^section=faqs [OR]
RewriteCond %{QUERY_STRING} ^section=section=what_is_floodsentry [OR]
RewriteCond %{QUERY_STRING} ^section=uses [OR]
RewriteCond %{QUERY_STRING} ^section=apply [OR]
RewriteCond %{QUERY_STRING} ^section=technical [OR]
RewriteCond %{QUERY_STRING} ^section=kitemark [OR]
RewriteCond %{QUERY_STRING} ^section=trade [OR]
RewriteCond %{QUERY_STRING} ^section=trade_design [OR]
RewriteCond %{QUERY_STRING} ^section=trade_revenues [OR]
RewriteCond %{QUERY_STRING} ^section=trade_value [OR]
RewriteCond %{QUERY_STRING} ^section=trade_company [OR]
RewriteCond %{QUERY_STRING} ^section=trade_glance [NC]
RewriteRule ^(.*) http://www.floodstoppersuk.com/product/7/air-brick-seal-flood-sentry-sandbag-replacement-pack-of-2? [R=301,L]
Logged

Pages: [1]   Go Up
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF | SMF © 2006-2008, Simple Machines Valid XHTML 1.0! Valid CSS!