Tagged Questions
10
votes
5answers
761 views
Does the position of a slug in a URL matter?
FOR SEARCH ENGINE OPTIMIZATION PURPOSES, does the location of the slug within a URL matter?
There's no doubt that you could code URL slugs to work properly in any order. I'm more interested to know ...
3
votes
1answer
1k views
Grails SEO friendly URLs
The standard way of creating URLs in grails is:
<a href="${createLink(controller:'news', action: 'show', params: [id: news.id])}">${news.title}</a>
which generates the url: ...
2
votes
1answer
493 views
Servlet/JSP URLs when forwarding requests
My web app has a servlet called admin which when navigated to checks if the user is logged in and if the are directs to the the admin section, but if they aren't it directs them to a JSP page with a ...
0
votes
1answer
163 views
Parse_url equivalent in grails / groovy?
Is there a groovy/grails equivalent to PHP's parse_url ( http://php.net/manual/en/function.parse-url.php ) or python's urlparse ( http://docs.python.org/library/urlparse.html ) that turns a URL ...
0
votes
1answer
505 views
Dynamic URL REWRITING for QueryStrings
hello please help me for this question
i have the following url --> www.sample.com/news.aspx?id=45
i want pass "id" in the query string to news.aspx and show this news, but due to url rewriting the ...
0
votes
1answer
131 views
how to differentiate grails url mappings
I have the mappings:
"/$controller/$action?/$id?"{
constraints {
// apply constraints here
}
} // i used scaffolding and i think this is required by ...