因用户中心设计问题必须使用伪静态，以下是3个环境的伪静态规则，请根据你使用的环境进行使用对应的规则
如果你的用户中心不是user那请在下方规则找到有user的修改为对应的目录，否则必出404，数据获取不到等问题

Nginx的

location / {
 if (!-e $request_filename) {
   rewrite ^/(.[a-zA-Z0-9\-\_]+).html$ /index.php?mod=$1 last;
 }
 rewrite ^/pay/(.*)$ /pay.php?s=$1 last;
 rewrite ^/user/([^/]+)/?$ /user/index.php?pages=$1 last;
}
location ^~ /plugins {
  deny all;
}
location ^~ /includes {
  deny all;
}


=======================================

Apache的
<IfModule mod_rewrite.c>
  Options +FollowSymlinks
  RewriteEngine On

  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.[a-zA-Z0-9\-\_]+).html$ index.php?mod=$1 [QSA,PT,L]
  RewriteRule ^pay/(.*)$ pay.php?s=$1 [QSA,PT,L]
  RewriteRule '^/user/([^/]+)/?$$' /user/index.php?pages=$1 [L] 
</IfModule>

=======================================

IIS的
<rule name="tool.apizl.com rewriteTools2" patternSyntax="ECMAScript" stopProcessing="true">
                    <match url="^/(.[a-zA-Z0-9\-\_]+).html" ignoreCase="false" />
                    <conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
                    <action type="Rewrite" url="/index.php?mod={R:1}" appendQueryString="false" />
                </rule><rule name="tool.apizl.com rewriteTools4" patternSyntax="ECMAScript" stopProcessing="true">
                    <match url="^/pay/(.*)" ignoreCase="false" />
                    <conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
                    <action type="Rewrite" url="/pay.php?s={R:1}" appendQueryString="false" />
                </rule><rule name="tool.apizl.com rewriteTools5" patternSyntax="ECMAScript" stopProcessing="true">
                    <match url="^/user/([^/]+)/?" ignoreCase="false" />
                    <conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
                    <action type="Rewrite" url="/user/index.php?pages={R:1}" appendQueryString="false" />
                </rule>



