首页 > 代码库 > php .htaccess 伪静态

php .htaccess 伪静态

 1 # 2 #以下是网站伪静态正则 3 # 4 RewriteEngine On 5 RewriteRule ^index.html$ index.php 6 RewriteRule ^about.html$ about.php 7 RewriteRule ^about_([0-9]+).html$ about.php?id=$1 8 RewriteRule ^contact.html$ contact.php 9 RewriteRule ^service.html$ service.php10 RewriteRule ^case.html$ case.php11 RewriteRule ^case_([0-9]+).html$ case.php?fid=$112 RewriteRule ^case_show_([0-9]+).html$ case_show.php?id=$113 RewriteRule ^wenda.html$ wenda.php14 RewriteRule ^wenda_show_([0-9]+).html$ wenda_show.php?id=$115 RewriteRule ^interact.html$ interact.php16 RewriteRule ^interact_show_([0-9]+).html$ interact_show.php?id=$117 RewriteRule ^news.html$ news.php18 RewriteRule ^news_([0-9]+).html$ news.php?fid=$119 RewriteRule ^news_show_([0-9]+).html$ news_show.php?id=$120 RewriteRule ^news_page([[0-9]+).html$ news.php?page=$121 RewriteRule ^news_fid([[0-9]+)_page([[0-9]+).html$ news.php?fid=$1&page=$222 RewriteRule ^wenti_([0-9]+).html$ wenti.php?fid=$123 RewriteRule ^wenti_show_([0-9]+).html$ wenti_show.php?id=$124 RewriteRule ^wenti_fid([[0-9]+)_page([[0-9]+).html$ wenti.php?fid=$1&page=$225 RewriteRule ^zhuanjia_([0-9]+).html$ zhuanjia.php?fid=$126 RewriteRule ^zhuanjia_show_([0-9]+).html$ zhuanjia_show.php?id=$127 RewriteRule ^product.html$ product.php28 RewriteRule ^product_([0-9]+).html$ product.php?fid=$129 RewriteRule ^product_show_([0-9]+).html$ product_show.php?id=$130 RewriteRule ^product_page([[0-9]+).html$ product.php?page=$131 RewriteRule ^service_page([[0-9]+).html$ service.php?page=$132 RewriteRule ^interact_page([[0-9]+).html$ interact.php?page=$133 RewriteRule ^wenda_page([[0-9]+).html$ wenda.php?page=$134 RewriteRule ^zhuanjia_fid([[0-9]+)_page([[0-9]+).html$ zhuanjia.php?fid=$1&page=$235 RewriteRule ^save_action_([a-z]+).html$ save.php?action=$1

 

php .htaccess 伪静态