Advertisement
contatowellington

Untitled

Jul 15th, 2017
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. <<<<<<<<<<<<<<<<<<<NO HTACCESS:>>>>>>>>>>>>>>>>>>>>>>>>>
  2.  
  3. RewriteEngine On
  4.  
  5. RewriteBase /
  6.  
  7. options +FollowSymLinks
  8.  
  9. <Files .*>
  10. Order Deny,Allow
  11. Deny From All
  12. </Files>
  13.  
  14. RewriteCond %{REQUEST_FILENAME} !-f
  15. RewriteCond %{REQUEST_FILENAME} !-d
  16.  
  17. RewriteRule .* index.php/$0 [PT]
  18.  
  19.  
  20. <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<NO SITE >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
  21.  
  22. $folder = '/'; // pasta onde se encontre o site, caso exista
  23. $uri = (string) substr($_SERVER['REQUEST_URI'], strlen($folder)); // remove a pasta do resto do URI
  24.  
  25. echo 'URI : '.$uri;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement