Re: [users@httpd] mod_rewrite help, # in input url

2014-01-21 Thread Eric Covener
On Tue, Jan 21, 2014 at 4:02 PM, Ayub Khan wrote: > Thank you for the reply. I want to match the text which is follows # and > grab a substring from it. Not sure if its possible with mod_rewrite ? Have a look at the access log. You'll notice that anything after the # isn't actually sent with th

Re: [users@httpd] mod_rewrite help, # in input url

2014-01-21 Thread Yehuda Katz
It is not possible. The string after the `#` is NEVER sent to the server (that is because of the way the browser works and there is nothing the server can do about it). The ONLY way to send it to the server would be to have some client-side scripting that captures and sends it as a real query stri

Re: [users@httpd] mod_rewrite help, # in input url

2014-01-21 Thread Ayub Khan
Thank you for the reply. I want to match the text which is follows # and grab a substring from it. Not sure if its possible with mod_rewrite ? /share/page/repositry/path#filter=xyz%2C%2Fn3%2FUSER%20HOMES%2Fn3%2Fn3555&page=1 >From the above url, I nee to redirect to /share/page/MyFiles&page=1 p

Re: [users@httpd] mod_rewrite help, # in input url

2014-01-21 Thread Rich Bowen
On 01/17/2014 12:49 PM, Ayub Khan wrote: Could some one assist me with creating a rewrite rule in httpd 2.2.4? http://localhost:8080/share/page/repository#filter=path%7C%2FUser%25Homes%2F<2ALFANUMERIC>%2F%2F%7C&page=1 http://localhost:8080/share/page/context/mine/myfiles#filter=path%2F<2ALFAN

[users@httpd] mod_rewrite help, # in input url

2014-01-17 Thread Ayub Khan
Could some one assist me with creating a rewrite rule in httpd 2.2.4? http://localhost:8080/share/page/repository#filter=path%7C%2FUser%25Homes%2F <2ALFANUMERIC>%2F%2F%7C&page=1 http://localhost:8080/share/page/context/mine/myfiles#filter=path%2F <2ALFANUMERIC>/%2F Below is sample: http://loca