1、nginx版本
折叠XML/HTML 代码
- rewrite ^([^\.]*)/my([0-9]+)/$ $1/e/space/index.php?userid=$2 last;
- rewrite ^([^\.]*)/my([0-9]+)/(UserInfo|gbook)\.html$ $1/e/space/$3.php?userid=$2 last;
- rewrite ^([^\.]*)/my([0-9]+)/list-([0-9]+)\.html$ $1/e/space/list.php?userid=$2&mid=$3 last;
- rewrite ^([^\.]*)/my([0-9]+)/list-([0-9]+)-([0-9]+)\.html$ $1/e/space/list.php?userid=$2&mid=$3&page=$4 last;
2、apache版本,将下面的代码写入.htaccess文件,放到网站根目录就可以了
折叠XML/HTML 代码
- RewriteEngine On
- RewriteBase /
- RewriteCond %{QUERY_STRING} ^(.*)$
- RewriteRule ^my([0-9]+)/$ e/space/index.php?userid=$1&%1
- RewriteCond %{QUERY_STRING} ^(.*)$
- RewriteRule ^my([0-9]+)/(UserInfo|gbook)\.html$ e/space/$2.php?userid=$1&%1
- RewriteCond %{QUERY_STRING} ^(.*)$
- RewriteRule ^my([0-9]+)/list-([0-9]+)\.html$ e/space/list.php?userid=$1&mid=$2&%1
- RewriteCond %{QUERY_STRING} ^(.*)$
- RewriteRule ^my([0-9]+)/list-([0-9]+)-([0-9]+)\.html$ e/space/list.php?userid=$1&mid=$2&page=$3&%1
以上设置是基于帝国会员空间的默认地址,伪静态后的地址是 http://网站地址/my+会员ID/ 的形式,my两个字母可以自行修改,例如改为user;
可以改成 http://你的域名/my/会员注册名/ 的形式,
第一行可分别改成
nginx
rewrite ^([^\.]*)/my/(.+)/$ $1/e/space/index.php?username=$2 last;
apache
RewriteRule ^my/(.+)/$ e/space/index.php?username=$1&%1
其他行根据上面两行修改为需要的字母即可