jimmyoneshot Posted January 9, 2011 Share Posted January 9, 2011 I've been struggling with this one for a while but can't fgure out why it won't work. I'm trying to rewrite:- http://www.mydomain.com/mysite/mypage.co.uk/Search/?Search-Term=blah/Page2 to (for example) something like:- http://www.mydomain.com/mysite/mypage.co.uk/index.php?Search-Term=blah&page=2 to allow pagination of search results The rule I have in place now is:- RewriteRule ^Search/([^/]*)/Page([0-9]*)$ index.php?Search-Term=$1&page=$2 [L] However this doesn't seem to work at all as it seems that it just incorporates the /Page2 part as part of the search term variable Can anyone help me out please? Quote Link to comment https://forums.phpfreaks.com/topic/223830-more-problems-with-query-string-url-rewriting/ Share on other sites More sharing options...
strago Posted January 22, 2011 Share Posted January 22, 2011 Options +FollowSymLinks +Indexes RewriteEngine on RewriteBase / RewriteRule ^search/([^.]+)/page/([^.]+)/$ mysite/mypage.co.uk/Search/index.php?Search-Term=$1&page=$2 [L] for domain.com/search/ANYTHING/page/#/ Quote Link to comment https://forums.phpfreaks.com/topic/223830-more-problems-with-query-string-url-rewriting/#findComment-1163444 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.