home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Templates / CSS / nolimit / .htaccess next >
Encoding:
Text File  |  2006-04-15  |  1.1 KB  |  27 lines

  1. <IfModule mod_php4.c>
  2.     php_value session.use_trans_sid 0
  3. </IfModule>
  4.  
  5. RewriteBase /
  6. RewriteEngine On
  7. RewriteRule ^categories/$ index.php?category=categories [L,QSA]
  8. RewriteRule ^contact/$ index.php?category=contact [L,QSA]
  9. RewriteRule ^images/$ index.php?category=images [L,QSA]
  10. RewriteRule ^login/$ index.php?category=login [L,QSA]
  11. RewriteRule ^logout/$ index.php?category=logout [L,QSA]
  12. RewriteRule ^new/$ index.php?category=new [L,QSA]
  13. RewriteRule ^rss/$ index.php?category=rss [L,QSA]
  14. RewriteRule ^unpublished/$ index.php?category=unpublished [L,QSA]
  15. RewriteRule ^sending_email_on_new_comment/$ sendmailmod.php [L,QSA]
  16.  
  17. RewriteCond %{REQUEST_FILENAME} -f 
  18. RewriteRule ^(.*) $1 [L]
  19.  
  20. RewriteCond %{REQUEST_FILENAME} !-d
  21. RewriteRule ^(.*)/$ index.php?category=$1 [L]
  22. RewriteCond %{REQUEST_FILENAME} !-d
  23. RewriteRule ^([a-z_]+)/([^/]+)/ index.php?category=$1&title=$2 [L]
  24. RewriteCond %{REQUEST_FILENAME} !-d
  25. RewriteRule ^([a-z_]+)/([^/]+)/([^/]+)/ index.php?category=$1&title=$2&commentspage=$3 [L]
  26. RewriteCond %{REQUEST_URI} !(.*)/$
  27. RewriteRule ^(.*)$ $1/ [L,R=301]