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

.htaccess 306B

12345678
  1. RewriteEngine On
  2. # If an existing asset or directory is requested go to it as it is
  3. RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -f [OR]
  4. RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -d
  5. RewriteRule ^ - [L]
  6. # If the requested resource doesn't exist, use index.html
  7. RewriteRule ^ /index.html