Advertisement
Guest User

Untitled

a guest
Sep 17th, 2017
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # -FrontPage-
  2.  
  3. IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
  4.  
  5. RewriteEngine on
  6. RewriteBase /
  7. RewriteRule ^category(.*),pn(.*).html$ index.php?a=category&b=$1&c=$2 [L]
  8. RewriteRule ^category(.*).html$ index.php?a=category&b=$1 [L]
  9. RewriteRule ^article(.*).html$ index.php?a=article&b=$1 [L]
  10. RewriteRule ^signup.html$ index.php?a=signup [L]
  11. RewriteRule ^login.html$ index.php?a=login [L]
  12. RewriteRule ^logout.html$ index.php?a=logout [L]
  13. RewriteRule ^submit.html$ index.php?a=submit [L]
  14. RewriteRule ^authors.html$ index.php?a=authors [L]
  15. RewriteRule ^author_(.*).html$ index.php?a=author&b=$1 [L]
  16. RewriteRule ^popular.html$ index.php?a=popular [L]
  17. RewriteRule ^categories.html$ index.php?a=categories [L]
  18. RewriteRule ^index.html$ index.php
  19. RewriteRule ^_(.*).html$ index.php?a=$1 [L]
  20.  
  21. <Limit GET POST>
  22. order deny,allow
  23. deny from all
  24. allow from all
  25. </Limit>
  26. <Limit PUT DELETE>
  27. order deny,allow
  28. deny from all
  29. </Limit>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement