@Fuji: I would strongly recommend against using that file(/section) for doing this (and I doubt it will work anyway, because technically, the "?" should not be available to the engine doing that). If that works, you won't be able to use e.g. a search module (like XSLTSearch) using GET requests...
This belongs in the UrlRewriting.config file where one should set up a rewrite that takes any URL matching something like "/news/?page=(\d+)" and rewrites that to "/news/page/$1" within the application (so not a permanent Domain rewrite with headers etc.)
How to use friendly url?
Hello my friends!
I know my problem is easy, but, I am new to this topic.
Well I need to pass this url
http://domain.com/news/?page=2
In this way, using Rewriting
http://domain.com/news/page/2
I just need it folks, Thank you very much!
Hi there,
You could try changing the <url Replacing> in the config file umbracoSettings.config.
Have something like
//fuji
Hi,
@Fuji: I would strongly recommend against using that file(/section) for doing this (and I doubt it will work anyway, because technically, the "?" should not be available to the engine doing that). If that works, you won't be able to use e.g. a search module (like XSLTSearch) using GET requests...
This belongs in the UrlRewriting.config file where one should set up a rewrite that takes any URL matching something like "/news/?page=(\d+)" and rewrites that to "/news/page/$1" within the application (so not a permanent Domain rewrite with headers etc.)
/Chriztian
Hi Chriztian,
Thank you for this precision.
//fuji
is working on a reply...