A URL rewrite engine is software that modifies a web URL's appearance (URL rewriting). Rewritten URLs (sometimes known as short, fancy URLs, or search engine friendly - SEF) are used to provide shorter and more relevant-looking links to web pages. The technique adds a degree of separation between ...

learn more… | top users | synonyms (3)

262
votes
13answers
129k views

Modify the URL without reloading the page

Is there any way I can modify the URL of the current page without reloading the page? I would like to access the portion before the # hash if possible. I only need to change the portion after the ...
37
votes
13answers
29k views

How to remove “index.php” in codeigniter's path

How do I remove the "index.php" sticking out in every path in codeigniter somewhere in the center? I want clean non index.php-fied URLs?
37
votes
7answers
12k views

IIS URL Rewriting vs URL Routing

I was planning to use url routing for a Web Forms application. But, after reading some posts, I am not sure if it is an easy approach. Is it better to use the URL Rewrite module for web forms? But, ...
24
votes
6answers
540 views

redirect 404 to similar urls

I have a website with stories in it. I can have multiple types of stories within multiple categories like: children romance scifi action thriler quests The stories are accessible using urls like: ...
24
votes
2answers
15k views

What is the WCF equivalent of HttpContext.Current.Request.RawUrl?

I've got some RESTful services running in a pure WCF context (i.e. ASP.NET compatibility is not enabled, and thus there is no HttpContext.Current object available). The URLs to the services are ...
24
votes
7answers
7k views

How to show Ajax requests in URL?

What I want is to have links which change a part of the page , and a dynamic URL for it, where I can specify variables such like #calendar=10_2010tabview=tab2 Check this for an exact example: CLICK ...
23
votes
2answers
6k views

How do I route images using ASP.Net MVC routing?

I upgraded my site to use ASP.Net MVC from traditional ASP.Net webforms. I'm using the MVC routing to redirect requests for old .aspx pages to their new Controller/Action equivalent: ...
22
votes
4answers
6k views

ASP.NET URL Rewriting

How do I rewrite URL's in ASP.NET? I would like users to be able to goto http://www.website.com/users/smith instead of http://www.website.com/?user=smith
20
votes
2answers
32k views

.htaccess mod_rewrite - how to exclude directory from rewrite rule

I have 8 lines of rewrite rules in my .htaccess file. I need to exclude two physical directories on my server from these rules, so they can become accessible. For now all requests are sent to ...
18
votes
7answers
4k views

Trailing slash in URLs - which style is preferred?

Hi I would like to know your opinions for and against using a trailing slash in a URL ? So, for example - should my URL look like that "/about-us/" or like that "/about-us" - I am fully aware to the ...
17
votes
2answers
13k views

Is there a url rewriting engine for Tomcat/Java?

How can we provide URL-Rewriting support for Tomcat/Java ? mod_rewrite provides this functionality for Apache and can modify URLs even before they reach the handler (e.g. PHP). Is there a similar ...
17
votes
3answers
2k views

ASP.NET MVC + IIS7 + FireFox : trailing slash in URL

Note: I have done hours of digging for the answer, and couldn't find one. I have an ASP.NET MVC (2.0) application, hosted on IIS7 (integrated mode). When GET request is made to /Toons/List - I ...
15
votes
5answers
16k views

Nginx rewrite non-www-prefixed domain to www-prefixed domain

I see the Nginx HttpRewriteModule documentation has an example to rewrite a www-prefixed domain to a non-www-prefixed domain: if ($host ~* www\.(.*)) { set $host_without_www $1; rewrite ^(.*)$ ...
15
votes
5answers
4k views

How to handle diacritics (accents) when rewriting 'pretty URLs'

I rewrite URLs to include the title of user generated travelblogs. I do this for both readability of URLs and SEO purposes. http://www.example.com/gallery/280-Gorges_du_Todra/ The first ...
14
votes
3answers
19k views

Should I use Url.Content() or ResolveUrl() in my MVC views?

When building code like this: <script type="text/javascript" src="<%=ResolveUrl("~/js/js.js")%>"></script> or <input type="image" ...
14
votes
5answers
751 views

How to find out programmatically if a web server instance supports url rewrite

What I want to ask is if there is a way to find out if a web-server instance has URL Rewriting enabled. I need this in order to be able to instantiate the correct type of URL handler. Theoretically ...
14
votes
11answers
1k views

What Url rewriter do you use for ASP.Net? [closed]

I've looked at several URL rewriters for ASP.Net and IIS and was wondering what everyone else uses, and why. Here are the ones that I have used or looked at: ThunderMain URLRewriter: used in a ...
13
votes
4answers
2k views

What is the ideal length of an URL slug

To make pretty URL's from article titles I am using a simple function. However lately I an concerned about the ideal length of these "slugs". It is said that too many dashes are bad. However some ...
13
votes
3answers
3k views

Java code/library for generating slugs (for use in pretty URLs)

Web frameworks such as Rails and Django has built-in support for "slugs" which are used to generate readable and SEO-friendly URLs: Slugs in Rails Slugs in Django A slug string typically contains ...
13
votes
2answers
4k views

Auto-versioning in ASP.NET MVC for CSS / JS Files?

I have read lots of article on how to auto-version your CSS/JS files - but none of these really provide an elegant way to do this in ASP.NET MVC. This link - What is an elegant way to force browsers ...
13
votes
2answers
2k views

ASP.NET MVC UrlHelper.GenerateUrl exception: “Cannot use a leading .. to exit above the top directory”

I am using the IIS 7 Rewrite module to rewrite an incoming url like: http://server/year/all to http://server/application/controller/year/all Everything works fine, except when, while processing ...
11
votes
4answers
8k views

Can Intelligencia.UrlRewriter be made to work in IIS7?

We've inherited an application that uses the Intelligencia.UrlRewriter module. Our environment though is IIS7. We've already set our site to run in the classic asp.net application pool (which ...
11
votes
1answer
246 views

What would cause PHP variables to be rewritten by the server?

I was given a VM at my company to install web software on. But I came across a rather bizarre issue where PHP variables would be overwritten (rewritten) by the server if they matched a specific ...
10
votes
4answers
8k views

urlencoded Forward slash is breaking URL

About the system I have URLs of this format in my project:- http://project_name/browse_by_exam/type/tutor_search/keyword/class/new_search/1/search_exam/0/search_subject/0 Where keyword/class pair ...
10
votes
5answers
916 views

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? http://stackoverflow.com/questions/358630/how-to-search-date-in-sql Also, what is the ...
10
votes
11answers
20k views

URL Rewriting under IIS at GoDaddy

I'm trying to get URL rewriting to work under IIS 7 at GoDaddy. I have wordpress installed and would like to use the "pretty" permalinks. After searching I found a few articles at learn.iis.net ...
10
votes
7answers
8k views

How to normalize a URL in Java?

URL normalization (or URL canonicalization) is the process by which URLs are modified and standardized in a consistent manner. The goal of the normalization process is to transform a URL into a ...
10
votes
5answers
7k views

jQuery on the fly URL shortener

I'm looking for an on the fly URL shortener much like how tweetdeck works. I have found many jQuery and general javascript plugins that take a url and run it through a shortening service such as ...
10
votes
7answers
10k views

Redirect 301 with hash part (anchor) #

One of our website has URL like this : exemple.oursite.com. We decided to move our site with an URL like this www.oursite.com/exemple. To do this, we wrote a rewrite rule in our Apache server that ...
10
votes
3answers
2k views

How to route a multiple language URL with a MVC

I need multi-language URL route of existing controller. Let me explain more: I have a controller with name "Product" and View with name "Software"; therefore, by default if the user enters ...
10
votes
4answers
5k views

IIS7, RewritePath and IIS log files

I am using Context.RewritePath() in ASP.NET 3.5 application running on IIS7. I am doing it in application BeginRequest event and everything works file. Requests for /sports are correctly rewritten ...
10
votes
4answers
9k views

Server.Transfer vs. Context.RewritePath

I understand they both don't change the URL that the client sees. Is there anything in them that makes one of them preferable over the other? I'm planning to use it in the Application_BeginRequest in ...
10
votes
4answers
15k views

How to rewrite an URL on a JBoss server?

I would like to redirect/rewrite this two kinds of URLs: mydomain.com -> newdomain.com mydomain.com/specificPage -> newdomain.com/newSpecificPage mydomain.com/anyOtherPage -> ...
10
votes
3answers
2k views

Removing .aspx from pages using rewriteModule?

I'm using ASP .NET rewriteModule to rewrite http://example.com to http://www.example.com. <section name="rewriteModule" type="RewriteModule.RewriteModuleSectionHandler, RewriteModule"/> Then ...
10
votes
3answers
6k views

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 characters in the querystring. Basically, the problem was that a request ...
9
votes
8answers
20k views

Can I use commas in a URL?

I typically use URL rewriting to pass content IDs to my website, so this Foo.1.aspx rewrites to Foo.aspx?id=1 For a specific application I need to pass in multiple IDs to a single page, so ...
9
votes
3answers
3k views

How to rewrite URL without refresh, like GitHub.com

I was browsing GitHub.com and I noticed when looking at the source for a repository, and you click on a file, the source code slides in and the URL changes, but it doesn't appear as if the page has ...
9
votes
5answers
838 views

Is it better to handle friendly/clean/pretty URLs with mod_rewrite or a language like PHP?

I'm developing my first decent-sized PHP site, and I'm a bit confused about what the "right way" (assuming there ever is such a thing) to handle clean/friendly/pretty URLs in the application. The way ...
9
votes
4answers
1k views

Incorrect Url.Action when URL rewrite is used

I get an incorrect URL from the Action method when I use a URL rewrite. I have this rewrite rule in web.config: <rule name="Old Objects 2" stopProcessing="true"> <match ...
9
votes
4answers
10k views

Remove HTML or ASPX Extension

In a hosted IIS7 environment, I am looking for the simplest way to use extension-less file names. Simply I have the following pages: index.html (or .aspx) --> domain.com gallery.html --> ...
9
votes
1answer
613 views

Pretty URLs in PHP frameworks

I know that you can add rules in htaccess, but I see that PHP frameworks don't do that and somehow you still have pretty URLs. How do they do that if the server is not aware of the URL rules? I've ...
9
votes
1answer
523 views

Internet Explorer ignores Hashtag in URL

I've got the following URL Rewrite Rules set up: <rules> <rule name="Clean URL" stopProcessing="true"> <match ...
9
votes
1answer
5k views

IIS 7.5 URL Rewrite Module with non-existent files and no extensions

I'm using the IIS URL Rewrite module successfully for known file extensions (.aspx, .html, etc.) However, how can I use the IIS URL Rewrite module for requests with no extensions, or files that do ...
8
votes
11answers
13k views

How to: URL re-writing in PHP?

I am trying to implement URL rewriting in my PHP application. Can someone share a step by step procedure of implementing URL rewriting in PHP - MYSQL. In my application I want to implement following ...
8
votes
10answers
7k views

websites urls without file extension?

When I look at Amazon.com and I see their URL for pages, it does not have .htm, .html or .php at the end of the URL. It is like: ...
8
votes
10answers
1k views

Best way to format pretty URLs for numeric IDs

Alright, so let's say I'm writing a forum application, and I want pretty URLs. However, all my tables use numeric IDs, so I'm not sure the best way to format the URLs for those resources. Let's ...
8
votes
4answers
2k views

URL/Subdomain rewrites (htaccess)

Say I have the following file: http://www.mysite.com/images/folder/image.jpg I want to serve it on http://s1.mysite.com/folder/image.jpg How can I do a htaccess rewrite to point it to it? Like ...
8
votes
2answers
7k views

The element > system.webServer' has invalid child > element 'rewrite'

Warning 1 The element 'system.webServer' has invalid child element 'rewrite'. List of possible elements expected: 'asp, caching, cgi, defaultDocument, directoryBrowse, globalModules, ...
8
votes
1answer
8k views

URL Rewriting in .Net MVC

I'm wondering what is the best way to handle URL in MVC. For example, in my application I have a PageController can link to /website/Page/Index/3 or /website/Page/home. The menu is built dynamically ...
8
votes
2answers
105 views

Is it possible to redirect a url using spring

I'm working on a project using spring, MVC, and implementing webapp-runner. The project used to have a hierarchy like /test/home/index.jsp but using webapp-runner it changed to /home/index.jsp. So, ...

1 2 3 4 5 113