tagged [url]

Directing non extension files to .php

Directing non extension files to .php I have a file with .php extention `www.example.com/thefile.php?name=123` that I want to direct the user to if the user visits any of the following aliases: Is the...

Can we use & in url?

Can we use & in url? Can we use "&" in a url ? or should be used?

7 Nov at 17:2

How to join components of a path when you are constructing a URL in Python

How to join components of a path when you are constructing a URL in Python For example, I want to join a prefix path to resource paths like /js/foo.js. I want the resulting path to be relative to the ...

24 Nov at 22:26

Clickable URL in a Winform Message Box?

Clickable URL in a Winform Message Box? I want to display a link to help in a message box. By default the text is displayed as a non-selectable string.

Characters allowed in a URL

Characters allowed in a URL Does anyone know the full list of characters that can be used within a GET without being encoded? At the moment I am using A-Z a-z and 0-9... but I am looking to find out t...

6 Dec at 22:10

C# Byte[] to Url Friendly String

C# Byte[] to Url Friendly String I'm working on a quick captcha generator for a simple site I'm putting together, and I'm hoping to pass an encrypted key in the url of the page. I could probably do th...

11 Dec at 09:9

MySQL > JSON, Causing errors with URL's

MySQL > JSON, Causing errors with URL's I have this code converting a mysql query to json: ``` $sth = mysql_query('SELECT * FROM `staff` ORDER BY `id` DESC LIMIT 20') or die(mysql_error()); $rows = ar...

28 Dec at 22:33

PHP: Serve pages without .php files in file structure

PHP: Serve pages without .php files in file structure I am working on building an internal CMS for clients. Instead of creating a new php file for each page, I am wondering if there is a way to load u...

1 Jan at 02:38

Getting full URL of action in ASP.NET MVC

Getting full URL of action in ASP.NET MVC Is there a built-in way of getting the full URL of an action? I am looking for something like `GetFullUrl("Action", "Controller")` that would return something...

5 Jan at 13:59

Rewriting URLs in ASP.NET?

Rewriting URLs in ASP.NET? I am using ASP.NET C#. How do I implement URL re-writing procedure that is similar to StackOverflow.com? Also, what is the meaning of values such as "358630" in the URL? Is ...

8 Jan at 21:14

.NET URI: How can I change ONE part of a URI?

.NET URI: How can I change ONE part of a URI? Often I want to change just part of a URI and get a new URI object back. In my current dilemma, I want to append `.nyud.net`, to use the CoralCDN. I have ...

29 Jan at 16:5

What's the difference between Request.Url.Query and Request.QueryString?

What's the difference between Request.Url.Query and Request.QueryString? I have been tracking down a bug on a Url Rewriting application. The bug showed up as an encoding problem on some diacritic char...

Help with C# HttpWebRequest URI losing its encoding

Help with C# HttpWebRequest URI losing its encoding Having a problem with HttpWebRequest decoding my encoded URL. When looking at end request URL is becomes: [https://www.google.com/webmasters/tools/f...

Making a Regex Django URL Token Optional

Making a Regex Django URL Token Optional You have a URL which accepts a `first_name` and `last_name` in Django: How would you include the OPTIONAL URL token of `title`, without creating any new lines....

24 Feb at 11:6

Full HTTP URL vs document root URL performances

Full HTTP URL vs document root URL performances I noticed a performance degradation when in my webpages I use the full HTTP URL to load an image. Let's say my website is on mydomain.com. Let's say ima...

28 Feb at 10:41

Routing with command controller and sub controllers without using areas

Routing with command controller and sub controllers without using areas How can I create a routing structure for a project management application where there are discrete controllers for all the relev...

Add URL link in CSS Background Image?

Add URL link in CSS Background Image? I have a CSS entry that looks like this: How can I add the link to the the background image in that CSS? The

15 Apr at 07:50

url rewriting + Asp.Net Login Form = Death

url rewriting + Asp.Net Login Form = Death on our site we do url rewriting to generate massive amounts of database generated pages. on every page, there is a Login control for users. like this: Intern...

23 Apr at 02:12

What are the valid URL characters that can be used in a query variable?

What are the valid URL characters that can be used in a query variable? What are the valid characters that can be used in a URL query variable? I'm asking because I would like to create GUIDs of minim...

7 Jun at 16:53

present a static page url as different url which is SEO friendly

present a static page url as different url which is SEO friendly I have developed a site, which has some static pages. Like explore, home, feedback. The link for these goes as follows website.com/view...

4 Jul at 15:11

PHP, LAMP server, changing display paths of certain URLs?

PHP, LAMP server, changing display paths of certain URLs? I apologize if this is a basic question, however I have been searching on this and can't find anything of use, probably since I don't really k...

13 Aug at 18:41

PHP ini file_get_contents external url

PHP ini file_get_contents external url I use following PHP function: `file_get_contents('http://example.com');` Whenever I do this on a certain server, the result is empty. When I do it anywhere else,...

15 Aug at 17:45

Get URL from browser to C# application

Get URL from browser to C# application How can I get the url from a running instance of Chrome or Opera using C# .NET windows form app? Thanks!

26 Aug at 21:24

How can I override a .svc file in my routing table?

How can I override a .svc file in my routing table? I have this URL that was used from some JSON post back from the main website: [http://site/Services/api.svc/UpdateItem](http://site/Services/api.svc...

7 Sep at 21:14

A url resource that is a dot (%2E)

A url resource that is a dot (%2E) I have a resource that is a `.` This means my url looks like this: `http://myapp/index/.` And i need to add query parameters so that it looks like this: `http://myap...

4 Oct at 15:30