|
    
- 帖子
- 6159
- 积分
- 7154
- 威望
- 153
- 金币
- 438 个
- 体力
- 5879
|
match URL into $ with ^(.*)/(space|network)\-(.+)\.html$
if matched then
set URL = $1/$2.php?rewrite=$3
endif
match URL into $ with ^(.*)/(space|network)\.html$
if matched then
set URL = $1/$2.php
endif
match URL into $ with ^(.*)/([0-9]+)$
if matched then
set URL = $1/space.php?uid=$2
endif
这个规则试试(由于目前手上没有zeus的服务器,还希望帮忙试试,应该是没问题的),没问题的话,回个信,好给大家共享
对了,如果是单独站点,单独配置规则,以免冲突哦 |
|