1.新建.htaccess
<IfModule mod_rewrite.c>
  RewriteEngine On
  RewriteBase /
  RewriteRule ^index\.html$ - [L]
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteRule . /demo/index.html [L]
</IfModule>
注意最后一行demo替换为自己项目的子路径
2.将.htaccess文件放入项目所在的目录中
3.无需重启apache
