pedro84 Posted October 6, 2008 Share Posted October 6, 2008 I got form sending with "post" method. I got problem with submiting it. When I use mod_rewrite: browse/filter/ the form is not working, I got info about query error. When I use browse/filter (without ending slash) it works perfectly. Is it possibility to force it to work with ending slash? mod_rewrite rule: RewriteRule ^browse/([a-zA-Z0-9]+)$ index.php?module=albums&action=$1 [L] Link to comment https://forums.phpfreaks.com/topic/127283-mod_rewrite-and-post-form-problem/ Share on other sites More sharing options...
BillyBoB Posted October 6, 2008 Share Posted October 6, 2008 Is it possibility to force it to work with ending slash? RewriteRule ^browse/([a-zA-Z0-9]+)/?$ index.php?module=albums&action=$1 Try that. Link to comment https://forums.phpfreaks.com/topic/127283-mod_rewrite-and-post-form-problem/#findComment-658539 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.