No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.htaccess 822B

123456789101112131415161718192021
  1. <IfModule mod_rewrite.c>
  2. Options +FollowSymlinks -Multiviews
  3. RewriteEngine On
  4. #http?????https
  5. #RewriteCond %{SERVER_PORT} !^443$
  6. #RewriteRule ^(.*)$ https://www.xxxxx.com/$1 [L,R=301]
  7. RewriteCond %{REQUEST_FILENAME} !-d
  8. RewriteCond %{REQUEST_FILENAME} !-f
  9. RewriteRule ^(.*)$ index.php?s=/$1 [QSA,PT,L]
  10. #RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
  11. #RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
  12. #???????????????
  13. RewriteCond % !^$
  14. RewriteRule data/(.*).(php|php3|php4|php5|php6|php7|pht|phtml|asp|aspx|jsp|exe|js|sql|perl|cgi|asa)$ ?C [F]
  15. RewriteRule template/(.*).(php|php3|php4|php5|php6|php7|pht|phtml|asp|aspx|jsp|exe|perl|cgi|asa)$ ?C [F]
  16. RewriteRule uploads/(.*).(php|php3|php4|php5|php6|php7|pht|phtml|asp|aspx|jsp|exe|js|perl|cgi|asa)$ ?C [F]
  17. </IfModule>