彩虹工具网,是一个非常Nice的工具箱,包含站长工具、实用工具、开发工具、娱乐工具,能够提供备案查询、IP所在地查询、域名Whois查询、域名拦截查询、编码解码、高速图床等功能
伪静态
伪静态
NGINX:
location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.php?s=$1 last; break;
}
}
Apache 配置:
<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>