请求高手转换下伪静态 把httpd.ini转为 .htaccess
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了请求高手转换下伪静态 把httpd.ini转为 .htaccess相关的知识,希望对你有一定的参考价值。
[ISAPI_Rewrite]
# 3600 = 1 hour
CacheClockRate 3600
RepeatLimit 32
# Protect httpd.ini and httpd.parse.errors files
# from accessing through HTTP
RewriteBase /
RewriteRule ^(.*\.html.*)$ /index.php/$1 [L]
转换为 .htaccess 这个规则 谢谢
Nginx下伪静态规则
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteCond %REQUEST_FILENAME !-f
RewriteCond %REQUEST_FILENAME !-d
RewriteCond $1 !^(visit|im|min|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [QSA,L]
</IfModule>
改成Nginx下伪静态规则 怎么改啊
set $rule_0 1$rule_0;
if (!-d $request_filename)
set $rule_0 2$rule_0;
if ($1 !~ "^(visit|im|min|robots.txt)")
set $rule_0 3$rule_0;
if ($rule_0 = "321")
rewrite ^/(.*)$ /index.php/$1 last;
以上是关于请求高手转换下伪静态 把httpd.ini转为 .htaccess的主要内容,如果未能解决你的问题,请参考以下文章