科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网服务器频道Apache下伪静态html(URL Rewrite)的设置方法

Apache下伪静态html(URL Rewrite)的设置方法

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

打开 Apache 的配置文件 httpd.conf 。四 要实现asp帖子URL到php帖子的映射,在 第三步的之间添加:${tolowercase:%{QUERY_STRING}}&__is_apache_rewrite=1。

2008年8月19日

关键字: 服务器 配置文件 html Apache

  • 评论
  • 分享微博
  • 分享邮件

  一 打开 Apache 的配置文件 httpd.conf 。

  二 将#LoadModule rewrite_module modules/mod_rewrite前面的#去掉

  三 在 httpd.conf中添加:

  <IfModule mod_rewrite.c>

  RewriteEngine On

  #RewriteCond %{ENV:SCRIPT_URL} (?:index|dispbbs)[-0-9]+\.html

  RewriteRule ^(.*?(?:index|dispbbs))-([-0-9]+)\.html$ {GetProperty(Content)}.php?__is_apache_rewrite=1&__rewrite_arg=$2

  </IfModule>

  四 要实现asp帖子URL到php帖子的映射,在 第三步的<IfModule mod_rewrite.c>和</IfModule>之间添加:

  RewriteMap tolowercase int:tolower

  RewriteCond %{QUERY_STRING} (?:boardid|page|id|replyid|star|skin)\=\d+ [NC]

  RewriteRule ^(.*(?:index|dispbbs))\.asp$ {GetProperty(Content)}.php?${tolowercase:%{QUERY_STRING}}&__is_apache_rewrite=1

  五 保存httpd.conf并重启Apache

    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章