hello. when I create folder for every page and remap those in web.config , appeared this problem .
1)I can't see content of pages.
2)When I use navigation controls , my web.SiteMap don't work and don't show path of pages.
what is problem in my project , and what I solve that ?
this link is my web site :
Urlmapping code :
<urlMappi...
Let's say we have a grails web application exposing several resources.
tags
urls
users
The application has a classical web-interface which the users interact with and some administration.
We want to expose the resources from the application to clients via a RESTful API and we don't want that part of the app to clutter up the control...
Searching from google.com, like www.abc.com
Search Result Rank the pages like
Title.....
Description...
www.abc.com
Title...
Description...
www.abc.com/Aboutus.aspx
Title...
Description...
www.abc.com/contactus.aspx
What I need is, when user click www.abc.com/Aboutus.aspx, it should be redirected to www.abc.com rather www.abc.com/Aboutus...
I am trying to develop a grails application that has "root" content (www.mydomain.com/about for example) but will also support "projects" based upon the subdomain of the request; for example myproject.mydomain.com > www.mydomain.com/myproject. As a first pass, i have the URL configuration below:
"/$controller/$action?/$id?" {
...
}
"...
Hello guys!
Well I am having a problem when I have put my .NET 2.0 web site on IIS 6. I have used UrlMapping to redirect some old urls. It is working fine when I am using it on the VS local server port but when I deploy it to IIS 6, its giving a 404 Page not found error.
I've found that in a few forums they are talking about using Wild...
I'm trying to create a UrlMapping to map some static URL to a controller action, but I can't seem to set params.id. I'm working through Grails in Action, so I'm not sure what's wrong here.
Code:
class UrlMappings
...
static mappings={
"/timeline/chuck_norris"(controller:'post',action:'timeline',id:'chuck_norris')
...
}
In PostCon...
How can i modify the Url mappings in Grails dynamically? Let's say I have this in my UrlMappings.groovy:
"/"(controller:'home')
At some point or event in the app, I want to change it to:
"/"(controller:'url')
Is this possible? Thanks!
...
How do I create a urlmapping that maps controller A essentially as controller B?
I thought something like this would work, but no dice.
"/my/"(controller: 'other', action: '*')
...
On my Tomcat-Spring-Java project I want to have the following URLS
/index - to display entry page
/login - Login page
/cars/ - list the available cars
/cars/{id} - show a particular car
/cars/{id}/action - do action on this particular car
/people/ - list the available people
/people/{id} - show a particular person
/peopl...
I want to separate String params with a "-" in a url.
I had configurate UrlMappings with:
name friendlyurl: "/${productId}-${title}_url"{
controller = "product"
action = "index"
}
The productId is in the form stringnumber, like ESE123
The product controller needs the param productId.
It works with url like:
ESE1234-asdlashdlasj...
I have a URL mapping as below:
static mappings = {
name register: "/register" {
controller = "account"
action = "createuser"
}
}
and I want to redirect using this mapping from a controller with something like:
redirect mapping:'register'
Unfortunately, unlike createLink tag lib, it seems that...
HEllo. I need replace double slashes in one slash. I am planning do this in Global.asax Application_BeginRequest event. Is it enough? or better do a http module?
Thank you.
UPD
Sub Application_BeginRequest(ByVal sender As Object, ByVal e As EventArgs)
' Fires at the beginning of each request
Thread.CurrentThread.CurrentCul...