.htaccess 162 B

12345678910
  1. RewriteEngine
  2. on
  3. #不显示index.php
  4. RewriteCond %{REQUEST_FILENAME}
  5. !-d
  6. RewriteCond %{REQUEST_FILENAME} !-f
  7. RewriteRule ^(.*)$ index.php/$1
  8. [QSA,PT,L]