Iplanet webserver retaining the URI query string data.


 
Thread Tools Search this Thread
Top Forums Web Development Iplanet webserver retaining the URI query string data.
# 1  
Old 09-21-2015
Iplanet webserver retaining the URI query string data.

Current Situation:
1. Visit: https://xyz.com/2015/september?trackingparam=1234
2. The URL is missing the trailing / after the “september” directory
3. The URL is redirected and rewritten to: https://xyz.com/2015/september/ , dropping the query string data.
Note: https://xyz.com/2015/september/?trackingparam=1234 works just fine since it's pointing to a file, not a directory, so no redirection occurs. Here's an example of what we would like to happen:

Expected Result:
1. Visit: https://xyz.com/2015/september?trackingparam=1234
2. The URL is missing the trailing / after the “september” directory
3. The URL is redirected and rewritten to: https://xyz.com/2015/september/?trackingparam=1234 , retaining the query string data.
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Programming

Need sql query to string split and normalize data

Hello gurus, I have data in one of the oracle tables as as below: Column 1 Column 2 1 NY,NJ,CA 2 US,UK, 3 AS,EU,NA fyi, Column 2 above has data delimited with a comma as shown. I need a sql query the produce the below output in two columns... (5 Replies)
Discussion started by: calredd
5 Replies

2. Web Development

Apache website uri access

Hi i would like to grant access specific to one uri and rest of them should be denied. as follows: http://websitename/example user should be able to access htttp://websitename/other user should be denied (1 Reply)
Discussion started by: raghur77
1 Replies

3. UNIX for Advanced & Expert Users

Proxy must be specified as absolute URI

I encounter frequently a problem when installing Perl modules as follows: perl -MCPAN -e 'install Family::Module' The error message is: Proxy must be specified as absolute URI; ' ' is not at /usr/local/lib/perl5/5.8.8/CPAN.pm line 2357 even though I am not behind a proxy. Forcing to install the... (4 Replies)
Discussion started by: figaro
4 Replies

4. UNIX for Dummies Questions & Answers

How do I use SQL to query based off file data?

This is basically what I want to do: I have a file that contains single lines of IDs. I want to query the oracle database using these IDs to get a count of which ones match a certain condition. the basic idea is: cat myfile | while read id do $id in select count(PC.ptcpnt_id) from... (4 Replies)
Discussion started by: whoknows
4 Replies

5. Shell Programming and Scripting

Shell Uri Encoding

It really to make for Russian? from "тест" to "%D1%82%D0%B5%D1%81%D1%82" (1 Reply)
Discussion started by: Trump
1 Replies

6. Shell Programming and Scripting

Displaying the data from the select query in a particular format

Hi, I have a shell script that returns 10 records for the column Name and age from a select query. Where when i store those data in retrieve_list.txt file i need to store the data in a particular format like:- $Jason$30 $Bill$23 $Roshan$25 Here is my script: 1)... (15 Replies)
Discussion started by: sachin.tendulka
15 Replies

7. Debian

URI Devices issue

Hi gurus, I would like to migrate our windows print server to a debian linux but im newbie and i dont understand. when i try to add printer into Cups im going to localhost:631 and adding printers but i see this URI devices and i dont know how to deal with them? my test scenario is like this: A... (0 Replies)
Discussion started by: saveka
0 Replies

8. Shell Programming and Scripting

Parsing data and retaining the full length of variable

Here's is an example of what I want to do: var1="Horse " var2="Cat " var3="Fish " for animals in "$var1" "$var2" "$var3" do set $animals pet=$1 ## Ok, now I want to get the values of $pet, but ## I want to retain the full length it was... (3 Replies)
Discussion started by: app4dxh
3 Replies
Login or Register to Ask a Question
globus_url_t(3) 						   globus common						   globus_url_t(3)

NAME
globus_url_t - SYNOPSIS
Data Fields char * scheme globus_url_scheme_t scheme_type char * user char * password char * host unsigned short port char * url_path char * dn char * attributes char * scope char * filter char * url_specific_part Detailed Description Parsed URLs. This structure contains the fields which were parsed from an string representation of an URL. There are no methods to access fields of this structure. Field Documentation char* globus_url_t::scheme A string containing the URL's scheme (http, ftp, etc) globus_url_scheme_t globus_url_t::scheme_type An enumerated scheme type. This is derived from the scheme string char* globus_url_t::user The username portion of the URL. [ftp, gsiftp] char* globus_url_t::password The user's password from the URL. [ftp, gsiftp] char* globus_url_t::host The host name or IP address of the URL. [ftp, gsiftp, http, https, ldap, x-nexus unsigned short globus_url_t::port The TCP port number of the service providing the URL [ftp, gsiftp, http, https, ldap, x-nexus]. char* globus_url_t::url_path The path name of the resource on the service providing the URL. [ftp, gsiftp, http, https] char* globus_url_t::dn The distinguished name for the base of an LDAP search. [ldap] char* globus_url_t::attributes The list of attributes which should be returned from an LDAP search. [ldap] char* globus_url_t::scope The scope of an LDAP search. [ldap] char* globus_url_t::filter The filter to be applied to an LDAP search [ldap]. char* globus_url_t::url_specific_part An unparsed string containing the remaining text after the optional host and port of an unknown URL, or the contents of a x-gass-cache URL [x-gass-cache, unknown]. Author Generated automatically by Doxygen for globus common from the source code. Version 14.7 Tue Nov 27 2012 globus_url_t(3)