对窗体参数使用modu rewrite
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了对窗体参数使用modu rewrite相关的知识,希望对你有一定的参考价值。
Great way to use mod_rewrite with friendly URLs and Form
<IfModule mod_rewrite.c> Options +FollowSymLinks RewriteEngine On RewriteCond %{REQUEST_URI} /search.php$ RewriteCond %{QUERY_STRING} ^q=([A-Za-z0-9+]+)&s=Search$ RewriteRule ^(.*)$ /s-%1? [R=301,L] RewriteRule ^s-(.*)$ /search.php?q=$1&s=Search&a=1 [L] </IfModule>
以上是关于对窗体参数使用modu rewrite的主要内容,如果未能解决你的问题,请参考以下文章