Advertisement
Guest User

Untitled

a guest
Dec 26th, 2014
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. Options +FollowSymLinks
  2. RewriteEngine On
  3. RewriteBase /NetbeansProjects/App/
  4. RewriteRule ^(.*)/+$ $1 [R=301,L]
  5. RewriteRule ^/*$ index.php?page=index [NC]
  6. RewriteRule ^([webapp/]+)/([main/]+)/?$ /NetbeansProjects/App/index.php?page=$1_$2 [NC,QSA]
  7. RewriteRule ^([webapp/]+)/([dashboard/]+)/?$ /NetbeansProjects/App/index.php?page=$1_$2 [NC,QSA]
  8. RewriteRule ^([webapp/]+)/([search/]+)/?$ /NetbeansProjects/App/index.php?page=$1_$2 [NC,QSA]
  9. RewriteRule ^([search/]+)/?$ /NetbeansProjects/App/index.php?page=college_$1 [NC,QSA]
  10. RewriteRule ^([webapp/]+)/([apply/]+)/?$ /NetbeansProjects/App/index.php?page=$1_$2 [NC,QSA]
  11. RewriteRule ^([webapp/]+)/(.*)/([main/]+)/?$ /NetbeansProjects/App/index.php?page=$1_$3&uni=$2 [NC,QSA]
  12. RewriteRule ^([webapp/]+)/(.*)/([apply/]+)/?$ /NetbeansProjects/App/index.php?page=$1_$3&uni=$2 [NC,QSA]
  13. RewriteRule ^([webapp/]+)/(.*)/?$ /NetbeansProjects/App/index.php?page=index [NC,QSA]
  14. RewriteRule ^about/?$ index.php?page=about [NC]
  15. RewriteRule ^webapp/?$ index.php?page=college_no_login [NC]
  16. RewriteRule ^faq/?$ index.php?page=faq [NC]
  17. RewriteRule ^contact/?$ index.php?page=contact [NC]
  18. RewriteRule ^planner/?$ index.php?page=planner [NC]
  19.  
  20. http://www.example.com/webapp/dash or http://www.example.com/webapp/sos
  21.  
  22. RewriteRule ^([webapp/]+)/([dashboard/]+)/?$ /NetbeansProjects/App/index.php?page=$1_$2 [NC,QSA]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement