Tagged Questions
0
votes
0answers
25 views
appending folder structure in url rewriting
In our custom cms we have facility to add restaurant and special offers. Initially what I did is to rewrite friendly urls using the name field. To achieve this I write this code in the ...
1
vote
1answer
52 views
ColdFusion/ASP split URL handling
I am working on a new ASP.NET MVC (IIS 7) application that needs to hang off the URL of an existing group of ColdFusion applications. The URL hosts a series of applications and is of the form:
...
0
votes
2answers
245 views
ASP.NET MVC 3 Redirect/route URL back to subdomain
I have a site on a subdomain (www.website.com/foobar) which pulls the default page view. Due to the nature of MVC apps, this default page view can also be reached through the "controller/action" URL ...
0
votes
0answers
12 views
Implement Default Routing Patterns to all sites
In reference to Page Routing logic.
Can i implement a default Routing Pattern, more specifically Ignore certain patterns from ALL sites via the IIS default web.config?
0
votes
0answers
541 views
HTTP Error 404.0 - Not Found The resource you are looking for has been removed, had its name changed, or is temporarily unavailable
Just reinstalled the Windows 2008R2 Server and I am in the process of deploying the applications ti IIS. I haev a RESTFul service in .NET 4.0 that will not work.. It works great on my developing ...
0
votes
1answer
232 views
Url Routing working on localhost but Not on server
I uses asp.net 3.5 for buiding my application,
I use URL routing in it and it works fine in my local host
In my web.config file i do the following setting
<system.web>
...
3
votes
3answers
2k views
Why I'm getting “HTTP Error 403.14 - Forbidden” error after redirecting URL?
This is my solution structure.
When users hit in this http://localhost/RouteUrl/ URL I want to redirect them to http://localhost/RouteUrl/UI/MainForm.aspx.
In web.config file within system.web ...
2
votes
2answers
729 views
IIS 7.0 and IIS 7.5 Express URL Routing issue
Update:
I change the Question Title and try to make the environment clearly to explain my question!
and Important: Thank you for your help, sincerely!
Pic1: Remote IIS 7.0: you can see the code and ...
2
votes
2answers
1k views
ASP.NET Context RewritePath 404 Error
I have an .net 4.0 web application works like a charm at my local computer and old web server. Both computer uses classic and .net 4.0 application pool without any problems.
But when i migrated to a ...
0
votes
1answer
488 views
MVC 2/ASP.NET 4.0 App not working
I have picked up a project that is currently broken and I'm trying to fix it.
The application was last working correctly as a .NET 3.5 Web Forms application with some features implemented in MVC 2.0.
...
0
votes
1answer
45 views
How to redirect multiple older application to newer version application in IIS?
My IIS server has multiple application in single website. Here am planned to turn off(remove) the older application from IIS and redirect to newer version.
For example:
www.mydomain.com/demos/2.0/ ...
7
votes
6answers
1k views
ASP.NET MVC Url Route supporting (dot)
I hope that you can help me with the below problem.
I am using ASP.NET MVC 3 on IIS7 and would like my application to support username's with dots.
Example: http://localhost/john.lee
This is how my ...
0
votes
3answers
186 views
Relative URL with Extensionless URL Routing
I new to URL routing, but I'm planning out how it will work so I can have a URL like products.aspx?category=cars appear as products/cars.
Biggest problem I can see happening is that if have a link to ...
0
votes
1answer
167 views
Performance issues with ASP.NET 2.0 Routing with IIS6 and Forms Authentication
My aim, for SEO purposes, was to support URLs that provided better indexing and closer matches to the keyword that are important to our website. I therefore made changes to one of my public facing ...
0
votes
1answer
581 views
Global.asax events not firing in IIS 7 Integrated Mode with .net 4 routing
I just switched over to using Server 2008/IIS 7. I am running my application in integrated mode. I am using the .Net 4.0 routing feature and using extension-less urls.
My problem is that the ...
1
vote
2answers
263 views
How to route all IIS requests to my MVC app?
I'm creating an MVC 3 app that manages business for client companies. When deployed, incoming requests should prominently feature the name of the client company; thus,
...
0
votes
1answer
156 views
ASP.NET routing in production evironment
I have registered a custom asp.net route in a RouteTable.Routes.
routes.MapPageRoute(
"View Service",
"home/services/{*ServiceName}",
...
0
votes
2answers
1k views
Url Routing (ASP.NET 4 Web Forms) returning 404 under IIS7 (Win2008) but OK under IIS7.5 (Win7)?
I have an asp.net 4 website that is working fine locally under IIS7.5 (windows 7), and under the Classic Application Pool (albeit .NET 4).
Some of the site uses routing and some of the older sections ...
4
votes
2answers
1k views
The default document (default.aspx) in IIS is not working after adding MVC and routing to a WebForms project
I have an existing ASP.NET 3.5 WebForms project and have added ASP.NET MVC to the project. The existing pages work fine and so do the new controllers & views. However, when I deploy to IIS 7 the ...
1
vote
1answer
722 views
400 Bad Request for URLs containing “&” on IIS7 with UrlRoutingModule
I'm setting up ASP.net MVC 2.0 on an old WebForms site that runs on IIS 7. The old site has a 404 handler set up like:
<httpErrors errorMode="Custom">
<remove statusCode="404" ...
0
votes
1answer
618 views
URL Routing is not working in IIS 7.0 witrh apllication pool asp.net 2.0 Classical Mode
I have implemented the URL Routing in my projects I have followed the below article:
URL Routing DEMO
This URL Routing Demo works fine in my "IIS 7.0 with application pool asp.net 2.0 Integrated ...
-1
votes
1answer
304 views
url rewriting of asp.net application
I have a domain A.com, containing 2 asp.net applications 'B' and 'C'
where both B and C are related by reference.
I want.. on entering url www.A.com users should open up the page ...
1
vote
0answers
194 views
URL Routing in ASP.net 3 Web Forms with IIS7
I am using Web Forms ASP.Net Framework 3.5
I have built a website which is running fine on IIS6. I have added routes for it which are running fine aswell. It required me to do some changes in ...
3
votes
1answer
2k views
Best way to redirect websites in IIS 7
What is the best way to make sure all pages hit on a website hosting in IIS 7 are redirecting with the www. sub-domain...examples below:
http://site.com ==> http://www.site.com
or
...
0
votes
2answers
448 views
How to locally define how a URL is resolved in Windows/IIS
I know that there is a way to make any defined URL resolve to a different URL, but I can't remember how or where to define this setting.
I understand this is ambiguous, so consider the following ...
2
votes
1answer
2k views
UrlRoutingModule is missing from IIS
I am setting up a new server, and the "UrlRoutingModule-4.0" module is missing form IIS. I installed the MVC3 Update before installing IIS. Realizing my mistake, I uninstalled MVC3, and installed ...
0
votes
3answers
4k views
IIS 7, MVC 3 and WebSite/WebApplication problem - Updated: 2011-04-21
Solved using this post:
Can you convert an ASP.NET MVC Application to a Web Site using ASP.NET MVC and what problems might you run into?
EDIT: 2011-apr-21 (Got rid of the previous code to make it ...
1
vote
3answers
12k views
Routing HTTP Error 404.0 0x80070002
I have created routing rules in my ASP.NET application and on my Dev machine at IIS7 everything works fine. When I deploy solution to prod server which has also IIS7 I get error 404 (page not found) ...
1
vote
1answer
1k views
How to make routing in ASP.NET MVC3 Compatible in both IIS 6 and 7?
I have this code in Global.asax.cs:
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
...
1
vote
2answers
486 views
URL Routing in ASP.Net webforms running under the Classic .NET AppPool
Does anybody knows if it is possible to make URL routing in a ASP.Net webforms website that is running under the Classic .NET AppPool.
I've tried a few things here, but it just works when I switch ...
1
vote
1answer
244 views
Relative Links with Extension-less URLs
I have an ASP.NET 4.0 application that implements URL routing. This gives me page URLs with no extension (e.g. /Articles/{title})
Some of these pages contain relative links. When I test the site from ...
0
votes
1answer
2k views
Importing URL Rewrite to IIS 7.5
I am trying to run PimCore via IIS. However I am stumped at how to import the .htaccess file. I managed to import all the rules except these two in :
RewriteCond %{REQUEST_FILENAME} -s [OR]
...
1
vote
1answer
562 views
ASP.NET MVC and Web Farm Framework for IIS 7 Problem
I am trying to set up small web farm using "Microsoft Web Farm Framework 2.0 Beta for IIS 7"
Everything works fine, except for one problem -
My web application is written using ASP.NET MVC 2 and ...
0
votes
1answer
612 views
IIS URL Rewriting: How can I reliably keep relative paths when serving multiple files?
My WebApp is part CMS, and when I serve up an HTML page to the user it typically contains relative paths in a.href and img.src attributes.
I currently have them accessed by urls like: ...
0
votes
1answer
112 views
Routing problem, handling differently online versus local - MVC.net 1.0
I have there lines in my RegisterToutes :
routes.MapRoute("Pages3", "{url1}/{url2}/{url3}", MVC.Page.RedirectTo(), new { url1 = "", url2 = "", url3 = "" });
routes.MapRoute("Pages2", "{url1}/{url2}", ...
3
votes
2answers
6k views
Configuring IIS 7 & ASP.NET App for URL Routing
This is not an MVC topic.
I have an ASP.NET Application which performs URL Routing in the Application_Start method.
The routing looks like:
RouteTable.Routes.Add(new Route(
"Profile/{query}",
...
2
votes
1answer
1k views
Web Routing for IIS6 and II7 Classic Mode? *NOT* MVC
According to the msdn.microsoft.com site, .NET 3.5 Routing should work under IIS6 and II7 in classic mode. I've made the mods to the web.config file and tested under IIS7 integrated mode and it's ...
