pro_se Posted July 27, 2006 Share Posted July 27, 2006 hey! you guys have helped me alot and i hope you can help me with this next question i have... i am building a cms and i dont want those gay dynamic urls and i followed some tutorial and this is what i got: [code]Options +FollowSymLinksRewriteEngine OnRewriteRule ^([^/]*)/$ /index.php?q=$1 [L][/code] and it works when i type the url like this: http://somedomain.com/home/ but not like this: http://somedomain.com/homebasically it does not work if i dont put the trailing slash in it... does anyone know how to make it work without the ending slash? Quote Link to comment Share on other sites More sharing options...
wildteen88 Posted July 27, 2006 Share Posted July 27, 2006 its becuase you have a trailing slash within your rewrite rule:[code]RewriteRule ^([^/]*)/$ /index.php?q=$1 [L][/code]Remove the slash before the $ sign, That should sort it. Quote Link to comment Share on other sites More sharing options...
pro_se Posted July 28, 2006 Author Share Posted July 28, 2006 thanks... i should have seen that... :( 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.