Advertisement
Guest User

Untitled

a guest
Jul 28th, 2014
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. Options +FollowSymLinks -MultiViews
  2.  
  3. ErrorDocument 401 /401.php
  4. ErrorDocument 403 /403.php
  5. ErrorDocument 404 /404.php
  6. ErrorDocument 500 /500.html
  7.  
  8. RewriteEngine on
  9. RewriteBase /timetable
  10. RewriteRule ^(.+)$ index.php?page=$1 [L,QSA]
  11.  
  12. RewriteCond %{REQUEST_FILENAME} !-f
  13. RewriteCond %{REQUEST_FILENAME} !-d
  14. RewriteCond %{REQUEST_FILENAME}.php -f
  15. RewriteRule ^(.+)$ $1.php [L]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement