路由 apache 404 Not Found 问题
   
        在 public 下,打开.htaccess 这个文件,在文件里添加如下内容,
    然后重启 Apache, 就可以访问 xxx.com/web 页面了
   
    《IfModule mod_rewrite.c>
    Options +FollowSymLinks
    Options -MultiViews
    RewriteEngine On
   
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.*)$ index.php/$1 [L]
    《/IfModule>