1
vote
1answer
107 views

How to redirect non-existent .html files to mvc3 routes?

This is probably a duplicate, but my Google-foo is off or something, because I cannot find the answer to this simple question. I have moved an old site to MVC3 on IIS7.5 and I need to redirect some ...
2
votes
2answers
129 views

From a development perspective, how does does the indeed.com URL structure and site work?

On the webmaster's Q and A site, I asked the following: http://webmasters.stackexchange.com/questions/42730/how-does-indeed-com-make-it-to-the-top-of-every-single-search-for-every-single-c But, I ...
0
votes
2answers
840 views

How can I setup Laravel 4 routes for pages of focus on my default controller?

There will be several high profile links for customers to focus on, for example: Contact Us @ domain.com/home/contact About the Service @ domain.com/home/service Pricing @ domain.com/home/pricing ...
1
vote
1answer
202 views

Zend Framework URL Rewrite For SEO

I'm new to Zend, so pls help me out on this one, since I have searched a lot and tried a lot, I really did. here is the very old question: this is my current url: ...
1
vote
1answer
121 views

should url for ajax get http request be url friendly for seo?

The case: Controller that get only get "GET HTTP" calls(WEBSERVICE) from website view or from android, iphone etc.. should have url friendly url for seo? ( user friendly url: ...
-1
votes
1answer
575 views

Custom MVC Framework: How set links in view files [closed]

I'm creating a custom MVC framework, but I'm stuck with some URL definitions in the view files. I have this piece of code which lets me use SEO friendly links: $requestURI = explode('/', ...
1
vote
2answers
289 views

SEO: URL for detail page, include categories or not?

I'm working on a new advert website and want to implement some good SEO URLs. I got category URLs like: /category /category/sub-category This seems ok. What about detail pages? Option 1: ...
1
vote
1answer
330 views

301 Redirect original URL request to routed URL

I'm using the following code in my Global.asax file for url-rewriting: routes.MapRoute( "BlogArticle", "Blog/Article/{filename}", new { controller = ...
0
votes
1answer
176 views

SEO friendly routing 2 query strings

I am trying SEO Friendly Routing first time and wanted to pass 2 query strings. Basic Routing was www.SiteName.com/brandName which i did like this void RegisterRoutes(RouteCollection Routes) { ...
1
vote
2answers
840 views

Most effective way to code SEO friendly URLs?

I currently use .htaccess and PHP to parse URLs in the following way: URL: http://blah.com/article/123_this-that-and-the-other .htaccess: RewriteEngine On RewriteRule ^article/([0-9]+)_(.+)/?$ ...
0
votes
1answer
476 views

seo friendly urls and dynamic routing codeigniter php

I have an article management module in my codeigniter application. The heirarchy goes like this primary->secondary->tertiary->article list->article Now i have a tree view which will expand based on ...
0
votes
1answer
196 views

URL problem with ASP to ASP.NET again

I will explain again with sample codes.. We have an ASP site. It has too much contents you can look to this ASP site here for sample link1. Now we have to change this site to ASP.NET you can look this ...
2
votes
1answer
140 views

URL Problem with ASP to ASP.NET

I will transfer a website from CLASSIC ASP to ASP.NET. My domain name will not change but urls will change For Example: http://www.etkinpatent.com/iso-8-40-iso-9001-nedir.html this link will change to ...
0
votes
1answer
368 views

CakePHP: Advanced 'SEO' Routing - HowTo save old URLs Routes for changed Posts, for 301 redirects of external links

i have a problem with the routing of a new project. For most of the actions and entities like users, the URLs would never change, because user names i.e. are unique and not changable. For that stuff ...
1
vote
1answer
675 views

How to get an url to a menuitem from an article id in joomla 1.6?

I'm writing a module that has articles. I would like these article to end with the "read more" button. This button should redirect to a menuitem pointing to the full article if such a menuitem exists, ...
0
votes
1answer
372 views

Cakephp url customisation for SEO

I am developing a medical products search site. I need to display my site in search engines whenever a user try to search [COMPANY NAME] medicine [DISEASE]. For this, i created a page in my site ...
3
votes
2answers
552 views

ASP.NET MVC SEO Friendly URL's

I have an ASP.NET MVC application, and the visitors can select from two languages to view the site. My question is: should the url's themselves also be language dependent, like: /en/approach -> ...
2
votes
2answers
37 views

Should my / route redirect to /en/?

I'm working on a website with the url strategy that the site's locale is embedded in the url, eg. example.com/en/ - Welcome page in English example.com/en/... - English pages here example.com/de/ ...
1
vote
2answers
307 views

Asp.net mvc 3.0 tree structure page custom routing

I want to map all CMS pages url to single controller(PageController) and action(Details). How can I create custom routing to map all these urls? /teacher /teacher/kindergarten ...
1
vote
2answers
795 views

How to get url_helper to pass permalink instead of id in Rails?

I have the following route in my Rails3 project: match "/blog/:permalink" => "posts#show", :as => :post When I link to my post through a view as such: <%= link_to @post.title, ...
0
votes
3answers
222 views

Is there a downside to long URLs?

For sake of SEO I'd like to begin using my Blog's title as the URL (just like SO). Is there a point where long is too long? Any browser-specific (IE6) issues?
1
vote
1answer
189 views

proper url routing for seo

i use url routing for my category list and final http url is like as follows.. sitename/en/categories/000019001002/gauges-sensor-sets as you guess, 000019001002 part points out the category ...
1
vote
4answers
680 views

How do I ensure lower case URLs on POST?

I am trying to ensure that all URLs used to access my ASP.NET MVC site are lower case. In the event that an upper case letter is in the URL, I'm changing the status code to 301 and changing the ...
2
votes
3answers
83 views

Username based URLs

http://twitter.com/codinghorror http://twitter.com/login These both look like twitter accounts but the second one is not. It's a system page. How does twitter know that logout is not a username and ...
6
votes
2answers
2k views

ASP.NET MVC Routing / SEO Friendly URL

I'm trying to do something like stackoverflow Take a link from stackoverflow for example: http://stackoverflow.com/questions/9033/hidden-features-of-c if you remove the last part ...
0
votes
1answer
409 views

ASP.NET 4.0 routing + ajax + browser history

The problem with ASP.NET 4.0 routing is that the Page.RouteData.Values does not contain the paramenters after # character from the link ...
2
votes
4answers
132 views

Strange routing

How I can setup my rails app to respond to such urls: http://mydomain.com/white-halogene-lamp http://mydomain.com/children-lamps http://mydomain.com/contact-form The first one should link to my ...
2
votes
4answers
354 views

SEO URL Structure

Based on the following example URL structure: mysite.com/mypage.aspx?a=red&b=green&c=blue Pages in the application use ASP.net user controls and some of these controls build a query string. ...
15
votes
6answers
4k views

ASP.net MVC support for URL's with hyphens

Is there an easy way to get the MvcRouteHandler to convert all hyphens in the action and controller sections of an incoming URL to underscores as hyphens are not supported in method or class names. ...
9
votes
4answers
2k views

Internationalization and Search Engine Optimization

I'd like to internationalize my site such that it's accessible in many languages. The language setting will be detected in the request data automatically, and can be overridden in the user's settings ...
1
vote
5answers
2k views

How to SEO friendly an existing ASP .NET 3.5 web application under IIS6

So, I know there's a lot of this subject here and over the Internet. But most articles/questions refers to "static" url rewriting, like: www.site.com/products.aspx?category=Books So they rewrite ...
2
votes
3answers
2k views

.htaccess and seo-friendly urls

We have an ecommerce site right now that carries a range of brands. The brand pages carry urls as follows: http://www.<DOMAIN>.com/catalog/brand/view?id=2 We need to utilize more friendly ...
2
votes
2answers
459 views

Web Routing Best Practices for Naming urls NOT MVC

Working on routing my site and am wondering what a good standard is for naming regular pages? I was going to name them like: /Daily-Winners But I want to reserve the - multiword syntax for titles ...
5
votes
5answers
391 views

ASP.NET webpages without names, like stackoverflow?

Mentioned stackoverflow only as an example, but if you look above the URL for ask is http://stackoverflow.com/questions/ask which means /ask is a subdirectory, but they also do this for the ...