Advertisement
Guest User

Untitled

a guest
Apr 13th, 2012
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.91 KB | None | 0 0
  1. # BEGIN block bad bots
  2. deny from 67.202.0.0/18 'Amazon ec2-Cloud"
  3. deny from 72.44.32.0/19 "Amazon ec2-Cloud"
  4. deny from 75.101.128.0/17 "Amazon ec2-Cloud"
  5. deny from 79.125.0.0/18 "Amazon ec2-Cloud"
  6. deny from 174.129.0.0/16 "Amazon ec2-Cloud"
  7. deny from 184.72.0.0/15 "Amazon ec2-Cloud"
  8. deny from 204.74.108.0/24 "Amazon ec2-Cloud"
  9. deny from 204.236.128.0/17 "Amazon ec2-Cloud"
  10. deny from static.cloud-ips.com
  11. deny from compute.amazonaws.com
  12. Deny from 46.51.128.0/18
  13. Deny from 46.51.192.0/20
  14. Deny from 46.137.0.0/17
  15. Deny from 50.16.0.0/14
  16. Deny from 175.41.128.0/18
  17. Deny from 216.182.224.0/20
  18.  
  19. # END block bad bots
  20.  
  21. # BEGIN WordPress
  22. <IfModule mod_rewrite.c>
  23.  
  24. RewriteEngine On
  25. RewriteBase /
  26. RewriteRule ^index\.php$ - [L]
  27.  
  28. # uploaded files
  29. RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L]
  30.  
  31. # add a trailing slash to /wp-admin
  32. RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]
  33.  
  34. RewriteCond %{REQUEST_FILENAME} -f [OR]
  35. RewriteCond %{REQUEST_FILENAME} -d
  36. RewriteRule ^ - [L]
  37. RewriteRule ^[_0-9a-zA-Z-]+/(wp-(content|admin|includes).*) $1 [L]
  38. RewriteRule ^[_0-9a-zA-Z-]+/(.*\.php)$ $1 [L]
  39. RewriteRule . index.php [L]
  40.  
  41. </IfModule>
  42.  
  43. # END WordPress
  44.  
  45. RewriteCond %{HTTP_HOST} ^ssnet.org$ [OR]
  46. RewriteCond %{HTTP_HOST} ^www.ssnet.org$
  47. RewriteRule ^qrtrly\/qrtrly\.html$ "http\:\/\/ssnet\.org\/study\-guides\/" [R=301,L]
  48.  
  49. RewriteCond %{HTTP_HOST} ^ssnet.org$ [OR]
  50. RewriteCond %{HTTP_HOST} ^www.ssnet.org$
  51. RewriteRule ^qrtrly\/index\.html$ "http\:\/\/ssnet\.org\/study\-guides\/" [R=301,L]
  52.  
  53. RewriteCond %{HTTP_HOST} ^ssnet.org$ [OR]
  54. RewriteCond %{HTTP_HOST} ^www.ssnet.org$
  55. RewriteRule ^qrtrly\/eng\/index\.html$ "http\:\/\/ssnet\.org\/study\-guides\/" [R=301,L]
  56.  
  57. RewriteCond %{HTTP_HOST} ^ssnet.org$ [OR]
  58. RewriteCond %{HTTP_HOST} ^www.ssnet.org$
  59. RewriteRule ^qrtrly\/adult\-lessons\.html$ "http\:\/\/ssnet\.org\/study\-guides\/lesson\-archives\/" [R=301,L]
  60.  
  61. RewriteCond %{HTTP_HOST} ^ssnet.org$ [OR]
  62. RewriteCond %{HTTP_HOST} ^www.ssnet.org$
  63. RewriteRule ^bsc\/$ "http\:\/\/ssnet\.org\/bible\-study\-center\/" [R=301,L]
  64.  
  65. RewriteCond %{HTTP_HOST} ^ssnet.org$ [OR]
  66. RewriteCond %{HTTP_HOST} ^www.ssnet.org$
  67. RewriteRule ^bsc\/biblinyr\/biblinyr\.html$ "http\:\/\/ssnet\.org\/bible\-study\-center\/the\-bible\-in\-a\-year\/" [R=301,L]
  68.  
  69. RewriteCond %{HTTP_HOST} ^ssnet.org$ [OR]
  70. RewriteCond %{HTTP_HOST} ^www.ssnet.org$
  71. RewriteRule ^links\/links\.html$ "http\:\/\/ssnet\.org\/links\/" [R=301,L]
  72.  
  73. RewriteCond %{HTTP_HOST} ^ssnet\.org$ [OR]
  74. RewriteCond %{HTTP_HOST} ^www\.ssnet\.org$
  75. RewriteRule ^emailgroups\/?(.*)$ "http\:\/\/ssnet\.org\/email\-lists\/$1" [R=301,L]
  76.  
  77. # Google Analytics Integration - Added by cPanel.
  78. <IfModule mod_substitute.c>
  79. AddOutputFilterByType SUBSTITUTE text/html
  80. Substitute "s|(<script src='/google_analytics_auto.js'></script>)?</head>|<script src='/google_analytics_auto.js'></script></head>|i"
  81. </IfModule>
  82. # END Google Analytics Integration
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement