Advertisement
Guest User

Untitled

a guest
Jun 5th, 2013
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. <IfModule mod_rewrite.c>
  2. SetEnv HTTP_MOD_REWRITE On
  3. RewriteEngine On
  4. RewriteBase '/local.Mysite'
  5.  
  6. #Maintenance mode for non-CMS requests
  7. RewriteCond %{REQUEST_URI} !^/admin/.*
  8. RewriteCond %{REQUEST_URI} !^/Security.*
  9. RewriteCond %{REQUEST_URI} !^/maintenance.html$
  10. RewriteRule .* maintenance.html [L]
  11. #######################
  12.  
  13. # MAIN SS REWRITE RULES
  14. RewriteCond %{REQUEST_FILENAME} !-f
  15. RewriteCond %{REQUEST_URI} ^(.*)$
  16. RewriteRule .* framework/main.php?url=%1&%{QUERY_STRING} [L]
  17.  
  18. </IfModule>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement