伪静态,rewrite规则

江枫思渺然 提交于 2019-12-05 00:21:46

要使用伪静态必须先设置重写模块,在前面的linux notes中有,windows配置:link

Apache Rewrite 规则详解

htaccess rewrite 规则详细说明

‘redirect|R [=code]‘ (强制重定向 redirect)

‘forbidden|F’ (强制URL为被禁止的 forbidden)

‘last|L’ (最后一个规则 last)

‘nocase|NC’ (忽略大小写 no case)


正则表达式……痛,善用regex在线转换测试功能吧。http://tool.chinaz.com/regex

:localhost/simple/home/test/aaa

转换localhost/simple/index.php?c=home&m=test&param=aaa

index.php同目录下新建.htaccess

RewriteEngine on
RewriteCond $1 !^(index\.php)
RewriteRule ^index\?c=([a-z]{1,})&m=([a-z]{1,})$ index.php?c=$1&m=$2
(.*)可以搭配任何……

Htaccess Rewrites - Rewrite Tricks and Tips

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!