webjin
V2EX  ›  PHP

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

  •  
  •   webjin · Mar 25, 2014 · 3660 views
    This topic created in 4458 days ago, the information mentioned may be changed or developed.
    [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 replies    1970-01-01 08:00:00 +08:00
    Actrace
        1
    Actrace  
       Mar 26, 2014
    好蛋疼,我一般都用以下规则...
    RewriteEngine On
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   958 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 30ms · UTC 20:01 · PVG 04:01 · LAX 13:01 · JFK 16:01
    ♥ Do have faith in what you're doing.