How would I do this URL change?
相关问题
- Backbone.js PushState routes .htaccess only workin
- Stop .htaccess redirect with query string
- .htaccess rule, redirecting old unexistent address
- UrlEncodeUnicode and browser navigation errors
- Improve converting string to readable urls
相关文章
- C# HttpClient.SendAsync always returns 404 but URL
- Prevent $anchorScroll from modifying the url
- How does a browser handle cookie with no path and
- Base64URL decoding via JavaScript?
- Multiple htaccess rewrite rule
- AWS ALB redirect to https
- rewrite urls for product name
- Should I url encode a query string parameter that&
Try this mod_rewrite rule:
This will rewrite a request of
/index.php?a=6&b=3
internally to/6/3
.And if you rather want the other way round:
This will rewrite a request of
/6/3
internally to/index.php?a=6&b=3
.