Guest User

Untitled

a guest
Jun 17th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. RewriteRule ^/(.*.(php|html|htm|css|jpg))$ /$1 [NC,L]
  2. RewriteRule ^/(.*)$ /bar.php?code=$1 [NC,L]
  3.  
  4. RewriteCond %{REQUEST_FILENAME} !-f
  5. RewriteCond %{REQUEST_FILENAME} !-d
  6. RewriteRule . /index.php
  7.  
  8. $url_array = split('/', $_SERVER['REQUEST_URI']);
  9. array_shift($url_array); // remove first value as it's empty
  10.  
  11. RewriteCond %{REQUEST_FILENAME} !-f
  12. RewriteCond %{REQUEST_FILENAME} !-d
  13. RewriteRule ^/([^.]+)$ /bar.php?code=$1 [QSA,L]
  14.  
  15. RewriteCond %{REQUEST_URI} ^/blerg$
  16. RewriteRule ...
  17.  
  18. RewriteCond %{REQUEST_URI} ^/blerg$
  19. RewriteRule ...
  20.  
  21. RewriteRule ^/(.*.(php|html|htm|css|jpg))$ /$1 [NC,L]
  22. RewriteRule ^/$ /index.php [L]
  23. RewriteRule ^/(.*)$ /bar.php?code=$1 [NC,L]
  24.  
  25. RewriteCond %{REQUEST_FILENAME} !-f
  26. RewriteCond %{REQUEST_FILENAME} !-d
  27. RewriteRule ^(.+)$ /handler.php?request=$1 [QSA,L]
  28.  
  29. RewriteRule ^blah.jpg$ /some_other_file.jpg [L]
  30.  
  31. RewriteRule ^directory/?$ /some_other_directory/index.php [L]
  32.  
  33. RewriteRule ^/(.*)$ /bar.php?code=$1 [NC,L]
  34.  
  35. RewriteRule ^/?(.*)$ /bar.php?code=$1 [NC,L]
Add Comment
Please, Sign In to add comment