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? Link to comment https://forums.phpfreaks.com/topic/15771-htaccess-help/ 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. Link to comment https://forums.phpfreaks.com/topic/15771-htaccess-help/#findComment-64556 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... :( Link to comment https://forums.phpfreaks.com/topic/15771-htaccess-help/#findComment-65020 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.