Guest User

Untitled

a guest
May 27th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. RewriteCond %{REQUEST_FILENAME} !-F
  2. RewriteCond %{REQUEST_FILENAME} !-D
  3. RewriteRule ^(.*)/(.*).html$ index.php?req=cat&id=$1&offs=$2 [L]
  4.  
  5. RewriteCond %{REQUEST_FILENAME} !-F
  6. RewriteCond %{REQUEST_FILENAME} !-D
  7. RewriteRule ^(.*)/index\.html$ index.php?req=cat&id=$1 [L]
  8.  
  9. RewriteCond %{REQUEST_FILENAME} !-F
  10. RewriteCond %{REQUEST_FILENAME} !-D
  11. RewriteRule ^(.*)/$ index.php?req=cat&id=$1 [L]
  12.  
  13. RewriteCond %{REQUEST_FILENAME} !-F
  14. RewriteCond %{REQUEST_FILENAME} !-D
  15. RewriteRule ^(.*)\.html$ index.php?req=detailed&id=$1 [L]
  16.  
  17. RewriteCond %{REQUEST_FILENAME} !-F
  18. RewriteCond %{REQUEST_FILENAME} !-D
  19. RewriteRule ^(.*)$ index.php?req=cat&id=$1 [L]
Add Comment
Please, Sign In to add comment