Help with .htaccess

Discussion in 'PHP' started by nomirock, Jul 3, 2007.

  1. #1
    What are the requirements of .htaccess i mean what it requires in the script?
    i am having problem rewriting url
    http://mysite/jokes/index.php?sbcat_id=23
     
    nomirock, Jul 3, 2007 IP
  2. ansi

    ansi Well-Known Member

    Messages:
    1,483
    Likes Received:
    65
    Best Answers:
    0
    Trophy Points:
    100
    #2
    assuming the mod_rewrite is enabled in your webserver's conf...

    RewriteEngineOn
    RewriteRule pattern target [optional flags]

    example to rewrite *.html to *.php:
    
    RewriteEngineOn
    RewriteRule ^(.*?).html$ $1.php [L]
    
    Code (markup):
    further reading can be found @ http://www.sitepoint.com/article/guide-url-rewriting
     
    ansi, Jul 3, 2007 IP
  3. powerspike

    powerspike Peon

    Messages:
    312
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Realy need to tell us what you are trying to rewrite to (not just from) before someone can give you some targeted help. You've mentioned a script, mabye what you are trying to do is in php, can you supply some more information please nomirock.
     
    powerspike, Jul 4, 2007 IP