Advertisement
Guest User

Untitled

a guest
Nov 24th, 2014
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. function wpa_parse_query( $query ){
  2. if( ! is_admin() && ! $query->is_page() ) {
  3. wp_redirect( home_url() );
  4. exit;
  5. }
  6. }
  7. add_action( 'parse_query', 'wpa_parse_query' );
  8.  
  9. # Redirect useless pages
  10. Options +FollowSymlinks
  11. RewriteEngine on
  12. RedirectMatch 301 ^/portfolio/.*$ /gallery/
  13. RedirectMatch 301 ^/author/.*$ /
  14. RedirectMatch 301 ^/category/.*$ /
  15. RedirectMatch 301 ^/tag/.*$ /
  16. RedirectMatch 301 ^/20.*$ /
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement