最近很多网友都在购买那个野兔在线工具系统,不知道怎么安装那个Apache服务的伪静态,还有那个Nginx服务的,所以我有空今天整理了一下那个伪静态的规则,以野兔在线工具系统V1.0版本的,但是不知道能不能用于其他版本的,所以正在使用V1.0版本的野兔在线工具系统的朋友可以参
最近很多网友都在购买那个野兔在线工具系统,不知道怎么安装那个Apache服务的伪静态,还有那个Nginx服务的,所以我有空今天整理了一下那个伪静态的规则,以野兔在线工具系统V1.0版本的,但是不知道能不能用于其他版本的,所以正在使用V1.0版本的野兔在线工具系统的朋友可以参考一下这个。
这个是我本人测试通过可以用的。
Apache版本
# nginx configuration by tool.662p.com
<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>
Nginx版本
# nginx configuration by tool.662p.com
if (!-d $request_filename){
set $rule_0 1$rule_0;
}
if (!-f $request_filename){
set $rule_0 2$rule_0;
}
if ($rule_0 = "21"){
rewrite ^/(.*)$ /index.php/$1 last;
}
以上的伪静态规则,只是针对野兔在线工具系统V1.0