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

12 行
286B

  1. <IfModule mod_rewrite.c>
  2. Options -MultiViews
  3. RewriteEngine On
  4. RewriteCond %{REQUEST_FILENAME} !-f
  5. RewriteRule ^(.*)$ index.php [QSA,L]
  6. </IfModule>
  7. <IfModule !mod_rewrite.c>
  8. <IfModule mod_alias.c>
  9. RedirectMatch 302 ^/$ /index.php/
  10. </IfModule>
  11. </IfModule>