1:虚拟机配置文件修改:

location / {
  index index.php index.html;
  if (!-e $request_filename) {
    rewrite ^/index.php(.*)$ /index.php?s=$1 last; #必须在前面
    rewrite ^(.*)$ /index.php?s=$1 last;
    break;
  }
}

复制时 空格替换成tab  ,否则可能报错哦

2:项目入口文件:.htaccess  保值默认即可

<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
</IfModule>

 

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐