Advertisement
Guest User

Untitled

a guest
Apr 5th, 2010
1,259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.58 KB | None | 0 0
  1. RewriteEngine On
  2.  
  3. RewriteCond %{REQUEST_FILENAME} !-f
  4. RewriteCond %{REQUEST_FILENAME} !-d
  5. RewriteRule ^(?<!\?)(.*)$ /index.php?$1 [L,NS]
  6. RewriteCond %{QUERY_STRING} ^(?!search)(.+)$
  7. RewriteRule ^$ /%1? [R=301,L]
  8.  
  9. RewriteCond %{HTTP_HOST} !^(dev|www|www1|www2|www3|fr|de|es|ru).wowhead.com$
  10. RewriteRule ^$ http://www.wowhead.com/$1 [R=301]
  11.  
  12. RewriteRule ^index.php http://www.wowhead.com/ [R=301]
  13.  
  14. # static content redirects
  15. RewriteRule ^ads(.*) http://static.wowhead.com/ads$1 [R=301]
  16. RewriteRule ^css(.*) http://static.wowhead.com/css$1 [R=301]
  17. RewriteRule ^images(.*) http://static.wowhead.com/images$1 [R=301]
  18. RewriteRule ^js(.*) http://static.wowhead.com/js$1 [R=301]
  19. RewriteRule ^widgets(.*) http://static.wowhead.com/widgets$1 [R=301]
  20.  
  21. Redirect 301 /eyewonder/interim.html http://static.wowhead.com/ads/eyewonder/interim.html
  22. Redirect 301 /eyeblaster/addineyeV2.html http://static.wowhead.com/ads/eyeblaster/addineyeV2.html
  23. Redirect 301 /doubleclick/DARTIframe.html http://static.wowhead.com/ads/doubleclick/DARTIframe.html
  24. Redirect 301 /PointRollAds.htm http://static.wowhead.com/ads/PointRollAds.htm
  25. Redirect 301 /videoegg/ad.html http://static.wowhead.com/ads/videoegg/ad.html
  26. Redirect 301 /trafficmp/eyengage.html http://static.wowhead.com/ads/trafficmp/eyengage.html
  27.  
  28. RewriteRule \.svn/ http://www.wowhead.com [R=404,L]
  29.  
  30. RewriteCond %{QUERY_STRING} ^wotlkguide$ [or]
  31. RewriteCond %{QUERY_STRING} ^wotlkguide=$
  32. RewriteRule ^$ http://www.wowhead.com/?guide=wotlk [L]
  33.  
  34. RewriteCond %{QUERY_STRING} ^wotlkguide=(.*)$
  35. RewriteRule ^$ http://www.wowhead.com/?guide=wotlk&%1 [R=301]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement