Advertisement
Guest User

Untitled

a guest
Dec 26th, 2014
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. ## Begin - Joomla! core SEF Section.
  2. #
  3. RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
  4. #
  5. # If the requested path and file is not /index.php and the request
  6. # has not already been internally rewritten to the index.php script
  7. RewriteCond %{REQUEST_URI} !^/index.php
  8. # and the requested path and file doesn't directly match a physical file
  9. RewriteCond %{REQUEST_FILENAME} !-f
  10. # and the requested path and file doesn't directly match a physical folder
  11. RewriteCond %{REQUEST_FILENAME} !-d
  12. # internally rewrite the request to the index.php script
  13. RewriteRule .* index.php [L]
  14. #
  15. ## End - Joomla! core SEF Section.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement