您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

8 行
260 B

  1. <IfModule mod_rewrite.c>
  2. Options +FollowSymlinks
  3. RewriteEngine On
  4. RewriteCond %{REQUEST_FILENAME} !-d
  5. RewriteCond %{REQUEST_FILENAME} !-f
  6. RewriteCond $1 !^(index\.php|robots\.txt|favicon\.ico)
  7. RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
  8. </IfModule>