摘要: 直接贴代码: 1 using System; 2 using System.Data; 3 using System.Text; 4 using System.Collections.Generic; 5 using System.Reflection; 6 7 namespace PowerCheck.Tools 8 { 9 10 public class ToJson 11 { 12 public ToJson() 13 { 14 15 } 16 public static string... 阅读全文
posted @ 2012-12-28 14:08 Seaurl 阅读(675) 评论(0) 推荐(0) 编辑
摘要: 比如我们有新闻页:/news/readmore.php?id=4875我们要做成静态页:/news/top2007,4875.html一 打开 apache 的配置文件 httpd.conf 。二 将#loadmodule rewrite_module modules/mod_rewrite前面的#去掉三 在 httpd.conf中添加:<ifmodule mod_rewrite.c>RewriteEngine OnRewriteRule /news/top2007,(\d+).html$ /news/readmore\.php\?id=$1</ifmodule>转:h 阅读全文
posted @ 2012-12-28 10:05 Seaurl 阅读(359) 评论(0) 推荐(0) 编辑