Xiode Posted March 20, 2007 Share Posted March 20, 2007 I keep seeing everything being turned from /products/123456 to products.php?id=123456.... The problem is ... I need to do this... page.php?name=Page => Page.html or page.php?name=Page => /Page/ page.php?name=Page&n=SubPage => /Page/SubPage/ RewriteRule ^page\.php?name=([A-Za-z]+)$ page/$1/ ^^ Doesn't work... What would? Quote Link to comment Share on other sites More sharing options...
wildteen88 Posted March 20, 2007 Share Posted March 20, 2007 You have the rewrite rule set-up wrong. It should be: RewriteRule ^page/([A-Za-z]+)/$ page\.php?name=$1 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.