111
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.
 
 
 
 
 

12 lines
356 B

  1. <IfModule mod_rewrite.c>
  2. Options +FollowSymlinks
  3. RewriteEngine On
  4. RewriteCond %{REQUEST_FILENAME} !-d
  5. RewriteCond %{REQUEST_FILENAME} !-f
  6. #如果页面出现"No input file specified." 请注释第一条,启用第二条
  7. RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
  8. #RewriteRule ^(.*)$ index.php [E=PATH_INFO:$1,QSA,PT,L]
  9. </IfModule>