Advertisement
Guest User

Untitled

a guest
Oct 18th, 2015
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. RewriteEngine on
  2.  
  3. # Some hosts require RewriteBase to make RewriteRules work.
  4. RewriteBase /
  5.  
  6. # Google SEO workaround for search.php highlights:
  7. # Make this rule the first rewrite rule in your .htaccess!
  8. RewriteRule ^([^&]*)&(.*)$ http://www.nsfw.net/$1?$2 [L,QSA,R=301]
  9.  
  10. # Google SEO 404:
  11. ErrorDocument 404 /misc.php?google_seo_error=404
  12.  
  13. # Google SEO Sitemap:
  14. RewriteRule ^sitemap\-([^./]+)\.xml$ misc.php?google_seo_sitemap=$1 [L,QSA,NC]
  15.  
  16. # Google SEO URL Forums:
  17. RewriteRule ^Forum\-([^./]+)$ forumdisplay.php?google_seo_forum=$1 [L,QSA,NC]
  18.  
  19. # Google SEO URL Threads:
  20. RewriteRule ^Thread\-([^./]+)$ showthread.php?google_seo_thread=$1 [L,QSA,NC]
  21.  
  22. # Google SEO URL Announcements:
  23. RewriteRule ^Announcement\-([^./]+)$ announcements.php?google_seo_announcement=$1 [L,QSA,NC]
  24.  
  25. # Google SEO URL Users:
  26. RewriteRule ^User\-([^./]+)$ member.php?action=profile&google_seo_user=$1 [L,QSA,NC]
  27.  
  28. # Google SEO URL Calendars:
  29. RewriteRule ^Calendar\-([^./]+)$ calendar.php?google_seo_calendar=$1 [L,QSA,NC]
  30.  
  31. # Google SEO URL Events:
  32. RewriteRule ^Event\-([^./]+)$ calendar.php?action=event&google_seo_event=$1 [L,QSA,NC]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement