Questions tagged [url]

Uniform Resource Locators are a generic scheme for specifying the location of resources. They are most commonly used for identifying locations on the Internet (such as webpages and email addresses) but can be used to reference almost anything.

519 questions
4
votes
6 answers

Redirecting http://www.example.com/index.html to http://www.example.com/ (without looping)

For aesthetic reasons (I prefer when there is a strict one-to-one mapping between URL and pages), I do not like the fact that http://www.example.com/index.html and http://www.example.com/ yield the same content with two different URLs. I would like…
bortzmeyer
  • 3,941
  • 1
  • 21
  • 24
4
votes
2 answers

Domain name change with minimum seo impact

I am owner of an existing (3 yr. old) domain http://www.22shrutiharmonium.com and my website appears at the top of the search results in case of some search phrases like "22 shruti" , "22 shruti harmonium", "shruti harmonium" etc., in major search…
3
votes
1 answer

Nginx reverse proxy hide url

Here is my nginx proxy.conf file, server { listen port 9090; root /usr/share/nginx/html; # not sure whether this line is needed or not index index.html; # not sure whether this line is needed or not location / { proxy_pass…
Mr Emp
  • 41
  • 2
  • 5
3
votes
2 answers

nginx rewrite url without changing browser address

I want to change the url of a request but the browser address should not change. To achieve this I have tried the below configuration: location /my-website { proxy_pass http://tomcat/my-website; } location =/my-website { …
Syed Osama Maruf
  • 103
  • 2
  • 2
  • 9
3
votes
0 answers

What's different between try_files and rewrite?

I want to redirect all dynamic request to index.php for example my index.php : here is my nginx configure of php: location ~ \.php$ { include snippets/fastcgi-php.conf; fastcgi_pass 127.0.0.1:9000; …
Mattia Dinosaur
  • 143
  • 2
  • 7
3
votes
1 answer

I need to configure haproxy with multiple ssl ports

I have two servers which have the same URL but the port number may change. I want to redirect these two URLs HTTPS. If I enter my first URL (http://example.com) then I want to it will redirect to https://example.com. If I enter second URL…
parag bharne
  • 33
  • 1
  • 4
3
votes
1 answer

Is Origin the common agreed name for protocol + hostname (+ port)?

Is Origin the common agreed name for protocol + hostname (+ port)? I know it is in JavaScript (not supported in IE), but I can't really find the word Origin back in other sources on the internet. Is there an official name for this part of the…
Dirk Boer
  • 485
  • 1
  • 3
  • 10
3
votes
1 answer

Issues with URL length in Apache/mod_wsgi

I have a python wsgi API in which I process incoming URL payloads of varied length. I believe, but am not absolutely sure, that I may have run into a limitation of URL size. For a particular payload (> 6K characters), it runs fine locally using the…
horcle_buzz
  • 175
  • 3
  • 10
3
votes
1 answer

What is the reason for redirecting the landing page of a site to a URL with '/#/' at the end?

What is the reason for redirecting the landing page of a site to a URL with '/#/' at the end? The system administrators at my company use a Apache reverse proxy, and they always redirect all the external websites to a landing page that ends with…
djangofan
  • 4,182
  • 10
  • 46
  • 59
3
votes
1 answer

Alias one URL to another

I have a mod-wsgi script running which is aliased to /test. I would like to alias the URL /prod to /test. So essentially, /test loads, but the URL says /prod. It is a single-page application. Is there a way I can do this?
jaynp
  • 235
  • 3
  • 9
3
votes
2 answers

URL Encoding force UTF-8 in CentOS 6.4

I have a simple html website in a CentOS 6.4 server. In every html page i have set I have already added in a .htaccess file the following line IndexOptions Charset=UTF-8 and in…
segconn
  • 31
  • 1
  • 3
3
votes
3 answers

why i cannot download jdk from oracle web site directly without AuthParam?

that is download with the following command, why it fails to download that file? wget http://download.oracle.com/otn-pub/java/jdk/6u35-b10/jdk-6u35-linux-i586.bin the following command works, but that AuthParam may not work after a while, why?…
giantforest
  • 239
  • 1
  • 4
  • 15
3
votes
3 answers

Sane Sharepoint 2007 URLs

In the current setup, the shared documents section has extremely convoluted URLs that are hardimpossible to remember, such as the…
Nate Parsons
  • 135
  • 7
3
votes
1 answer

How to change all Exchange external URLs without adversely affecting external users?

We have an Exchange 2010 SP2 system consisting of a single Mailbox/Hub/CAS server and a single Edge server. The MHC server is exposed to Internet users via a TMG 2010 reverse proxy. All Exchange web services use a public FQDN in an old DNS domain…
Massimo
  • 70,200
  • 57
  • 200
  • 323
3
votes
2 answers

How to configure IIS 7.5 to allow special chars in Url for ASP.NET 3.5?

I'm trying to configure my IIS 7.5 to allow specials chars in the url for ASP.NET. This is important to support wide-spread legacy url's on a new system. Sample url: http://mydomain.com/FileWith%inTheName.html This would be encoded in the url and…