Maison >développement back-end >tutoriel php >rewrite 规则求解,

rewrite 规则求解,

WBOY
WBOYoriginal
2016-06-13 10:18:27894parcourir

rewrite 规则求解,在线等…………
/sell_list.php 重定向到 /sell
/sell_list.php?fid=1 重定向到 /sell/list?fid=1
/bencandy.php?fid-55-id-21619-page-1.htm 重定向到 /news/bencandy.php?fid=55&id=21619

求高手帮忙,我自己写了好多次都不对。。

------解决方案--------------------

PHP code
RewriteEngine on#http://www.aa.com/webapp/sell_list.php?fid=111222RewriteCond %{QUERY_STRING} ^fid=([0-9]+)RewriteRule ^sell_list\.php$   sell/list [L]#http://www.aa.com/webapp/sell_list.phpRewriteRule ^sell_list\.php$  sell [L]#http://www.aa.com/webapp/bencandy.php?fid-55-id-21619-page-1.htmRewriteCond %{QUERY_STRING} ^fid-([0-9]+)-id-([0-9]+)-page-1\.htmRewriteRule ^bencandy\.php(.*)$ news/bencandy.php?fid=%1&id=%2  [L]<div class="clear">
                 
              
              
        
            </div>
Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn