V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
webjin
V2EX  ›  PHP

帮个忙~httpd.ini 转.htaccess,伪静态方法?

  •  
  •   webjin · 2014-03-25 23:19:09 +08:00 · 3171 次点击
    这是一个创建于 3706 天前的主题,其中的信息可能已经有所发展或是发生改变。
    [ISAPI_Rewrite]

    # 3600 = 1 hour
    CacheClockRate 3600

    RepeatLimit 32

    # Protect httpd.ini and httpd.parse.errors files
    # from accessing through HTTP
    RewriteRule ^(.*)/topic-(.+)\.html(\?(.*))*$ $1/portal\.php\?mod=topic&topic=$2&$4
    RewriteRule ^(.*)/article-([0-9]+)-([0-9]+)\.html(\?(.*))*$ $1/portal\.php\?mod=view&aid=$2&page=$3&$5
    RewriteRule ^(.*)/forum-(\w+)-([0-9]+)\.html(\?(.*))*$ $1/forum\.php\?mod=forumdisplay&fid=$2&page=$3&$5
    RewriteRule ^(.*)/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html(\?(.*))*$ $1/forum\.php\?mod=viewthread&tid=$2&extra=page\%3D$4&page=$3&$6
    RewriteRule ^(.*)/group-([0-9]+)-([0-9]+)\.html(\?(.*))*$ $1/forum\.php\?mod=group&fid=$2&page=$3&$5
    RewriteRule ^(.*)/space-(username|uid)-(.+)\.html(\?(.*))*$ $1/home\.php\?mod=space&$2=$3&$5
    RewriteRule ^(.*)/blog-([0-9]+)-([0-9]+)\.html(\?(.*))*$ $1/home\.php\?mod=space&uid=$2&do=blog&id=$3&$5
    RewriteRule ^(.*)/(fid|tid)-([0-9]+)\.html(\?(.*))*$ $1/index\.php\?action=$2&value=$3&$5

    RewriteRule ^(.*)/merchant\.html$ $1/plugin\.php\?id=merchant\:memcp&mobile=no
    RewriteRule ^(.*)/merchant-([0-9]+)\.html$ $1/plugin\.php\?id=merchant\:memcp&mid\=$2&mobile=no
    RewriteRule ^(.*)/mlist-([0-9]+)\.html$ $1/plugin\.php\?id=merchant\:memcp&catid=$2&mobile=no
    RewriteRule ^(.*)/mlist-([0-9]+)-([0-9]+)\.html$ $1/plugin\.php\?id=merchant\:memcp&catid=$2&sort=$3&mobile=no
    RewriteRule ^(.*)/merchant_([0-9]+)_([0-9]+)_([0-9]+)_([0-9])_([0-9])_([0-9])\.html$ $1/plugin\.php\?id=merchant\:memcp&catid=$2&sort=$3®=$4&r=$5&t=$6&s=$7&mobile=no


    RewriteRule ^(.*)/([a-z]+[a-z0-9_]*)-([a-z0-9_\-]+)\.html(\?(.*))*$ $1/plugin\.php\?id=$2:$3&$5
    1 条回复    1970-01-01 08:00:00 +08:00
    Actrace
        1
    Actrace  
       2014-03-26 17:02:53 +08:00
    好蛋疼,我一般都用以下规则...
    RewriteEngine On
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   897 人在线   最高记录 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 25ms · UTC 21:31 · PVG 05:31 · LAX 14:31 · JFK 17:31
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.