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
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
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.