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 the files used to generate a web page and the URL that is presented to the world.
49
votes
10answers
33k 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 ...
30
votes
7answers
8k 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, ...
21
votes
7answers
3k 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 ...
18
votes
4answers
3k 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
17
votes
3answers
1k 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 ...
17
votes
2answers
3k 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:
...
17
votes
1answer
9k 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 ...
13
votes
10answers
1k views
What Url rewriter do you use for ASP.Net?
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 ...
12
votes
7answers
3k 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 ...
10
votes
2answers
360 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
4answers
908 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 ...
10
votes
3answers
3k 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 ...
10
votes
5answers
760 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 ...
9
votes
1answer
1k 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 ...
9
votes
3answers
1k 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
3answers
7k 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" ...
9
votes
5answers
580 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 ...
8
votes
1answer
123 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 ...
8
votes
1answer
934 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 ...
8
votes
1answer
1k 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 ...
8
votes
6answers
4k 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 ...
7
votes
5answers
68 views
+50
redirect 404 to similar urls
i have a website with stories in it. i can have multiple type of stories within multiple categories like:
children
romance
scifi
action
thriler
quests
the sotries are stored (i have a mysql db) ...
7
votes
1answer
672 views
How to send url in SMS?
I am sending the SMS from iPhone application using the below code, I have to send the url also ,so I want to know what should be url format so that the when receiver(iphone user) of the SMS tap on ...
7
votes
4answers
3k 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 ...
7
votes
3answers
811 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 ...
7
votes
6answers
7k 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?
7
votes
10answers
766 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 ...
7
votes
4answers
5k 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 ...
7
votes
12answers
14k 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 ...
7
votes
4answers
10k 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 -> ...
6
votes
1answer
127 views
.htaccess subdomain argument not accessible in query string
I have written the following rules in .htaccess
RewriteCond %{HTTP_HOST} ^([^\.]+)\.domain\.com
RewriteCond %1 !^www$ [NC]
RewriteCond %{REQUEST_URI} ^/news/news-details\.php$
RewriteRule (.*) ...
6
votes
5answers
292 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 ...
6
votes
4answers
588 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 ...
6
votes
1answer
592 views
IIS 7 URL Rewrite rules aren't being applied
I have a .net 4.0 web application hosted on IIS7 server.
After reading this: http://learn.iis.net/page.aspx/496/iis-url-rewriting-and-aspnet-routing/ about serving static content from another server, ...
6
votes
3answers
216 views
Url rewriting with asp.net. is there a configuration needed?
I'm trying to enable rewrited urls in my project.
it's very good described in this post: urlrewriting by scottgu
It works very well when im running it on localhost, but as soon as i upload it to my ...
6
votes
2answers
10k 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 ...
6
votes
2answers
575 views
foo.com/alice vs. foo.com/users/alice
It's of course nice to give users friendly URLs for their content on your site. But how best to do that? There are a lot of advantages to something like foo.com/users/alice, most importantly that ...
6
votes
2answers
1k views
How do I remove “cgi-bin” from my URLs?
I'm creating a small application on an embedded device that has a boa web server running on it. I'm creating a web application in a mixture of plain HTML pages and Perl scripts to interface with the ...
5
votes
1answer
68 views
.htaccess and filtering $_GET
Hello I am writing a profile page script, in this script I check the value of an incoming $_GET variable and validate that it is an integer, I then validate this value against a $_SESSION value to ...
5
votes
1answer
232 views
Setup Project is not correctly registering assembly in GAC
I have created a custom Rewrite Provider for IIS 7 following instructions in this article: Developing a Custom Rewrite Provider for URL Rewrite Module
To simplify deployment, I have created a VS2010 ...
5
votes
3answers
148 views
Is it possible to have the url change while you scroll down a single page
Is it possible to have the url change while you scroll down a single page with ajax? I have a website all on one page and want to have this effect.
example:
www.blablabla.com/blog
user scroll ...
5
votes
2answers
379 views
IIS7: URL Rewriting with period
I'm using SEO-friendly URLs, and I can process most of them with ASP.NET, by mapping aspnet_isapi.dll to all URLs. (I set up an Handler Mapping in IIS that uses the dll for all paths. (path = *))
...
5
votes
1answer
155 views
How do I get this ASP.NET routing to work properly?
I'm trying to write a really simple prototype of a CMS system using ASP.Net MVC 3.
The system has a single controller with two actions: show and create.
The format for the 'Show' action is meant ...
5
votes
2answers
1k 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 ...
5
votes
8answers
572 views
Is it good idea to use URL names with special characters?
Is it good SEO to have URL's (page names) with non-english characters like Chinese names in URL's?
5
votes
3answers
819 views
How do you remove invalid characters when creating a friendly url (ie how do you create a slug)?
Say I have this webpage:
http://ww.xyz.com/Product.aspx?CategoryId=1
If the name of CategoryId=1 is "Dogs" I would like to convert the URL into something like this:
http://ww.xyz.com/Products/Dogs
...
5
votes
7answers
443 views
.htacces to create friendly URLs. Help needed
I'm having a hard time with .htacces. I want to create friendly URLs for a site I'm working on...
Basically I want to convert this:
http://website.com/index.php?ctrl=pelicula&id=0221889
...
5
votes
3answers
154 views
WordPress equivalent of Drupal's url()
Is there any WordPress equivalent function for Drupal's url()?
5
votes
5answers
2k 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 ...
5
votes
2answers
3k views
Rewriting URLs from https:// to http:// in IIS7
I'm trying to rewrite urls from the form:
https://example.com/about
to the form
http://example.com/about
using IIS7 URL rewriting:
<!-- http:// to https:// rule -->
<rule ...