万网空间下 apache配置htaccess文件

.htaccess文件
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
#RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
#RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1] 
RewriteRule ^(.*)$ index.php?s=$1 [QSA,PT,L]

nginx环境(未测试)

location / {
   if (!-e $request_filename) {
   rewrite  ^(.*)$  /index.php?s=$1  last;
   break;
    }
  }

猜你喜欢

转载自blog.csdn.net/weixin_38615720/article/details/104052834