need help in mode rewrite

Discussion in 'Apache' started by brokensoft, Oct 11, 2006.

  1. #1
    i want my pages titles is my pages url

    say i have apage title (i need help in mode rewrite and htaccess)

    i want my page url :
    mydomain.com/i-need-help-in-mode-rewrite-and-htaccess.html

    how could i do it ?
    what is the .htaccess code
    could i use it for any script ? pafiledb , phpbb

    thanks
     
    brokensoft, Oct 11, 2006 IP
  2. Nintendo

    Nintendo ♬ King of da Wackos ♬

    Messages:
    12,890
    Likes Received:
    1,064
    Best Answers:
    0
    Trophy Points:
    430
    #2
    Post BOTH the current URL and how you want it.
     
    Nintendo, Oct 11, 2006 IP
  3. brokensoft

    brokensoft Active Member

    Messages:
    214
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    55
    #3
    nba-live.com/download/pafiledb.php?action=file&id=798

    i want it

    nba-live.com/download/sitename/category/filename.html

    phpbb.com/phpBB/viewtopic.php?t=456170

    i want it :

    phpbb.com/category/postname.html
     
    brokensoft, Oct 11, 2006 IP
  4. Nintendo

    Nintendo ♬ King of da Wackos ♬

    Messages:
    12,890
    Likes Received:
    1,064
    Best Answers:
    0
    Trophy Points:
    430
    #4
    For phpBB, you'll have to go find a hack for that.

    Options +Indexes
    Options +FollowSymlinks
    RewriteEngine on
    RewriteBase /
    RewriteRule ^download/sitename/([^.]+)/([^.]+)\.html$ download/pafiledb.php?action=file&id=$1 [L]

    Only if you know how to edit the scipt to include the filename can you have it in it, with it as

    download/sitename/id/filename.html.
     
    Nintendo, Oct 11, 2006 IP