Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2019
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. Options +FollowSymlinks
  2.  
  3. # Prevent Directoy listing
  4.  
  5. Options -Indexes
  6.  
  7. RewriteBase /
  8.  
  9. RewriteRule ^sitemap.xml$ index.php?route=feed/google_sitemap [L]
  10.  
  11. RewriteRule ^googlebase.xml$ index.php?route=feed/google_base [L]
  12.  
  13. RewriteRule ^download/(.*) /index.php?route=error/not_found [L]
  14.  
  15. RewriteCond %{REQUEST_FILENAME} !-f
  16.  
  17. RewriteCond %{REQUEST_FILENAME} !-d
  18.  
  19. RewriteCond %{REQUEST_URI} !.*\.(ico|gif|jpg|jpeg|png|js|css)
  20.  
  21. RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]
  22.  
  23. Redirect 301 /blog/blog-page.html /information-page
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement