The canonical-link tag has no wiki summary.
8
votes
2answers
216 views
How do I get the final, redirected, canonical URL of a website using PHP?
In the days of link shorteners and ajax, there can be many links that ultimately point to the same content. I was wondering what the best way is to get the final, best link for a web site in PHP, ...
2
votes
1answer
40 views
Mod-Rewrite “Canonical URL's”
Hy, how can i make canonical URLs (For Facebook "Parsing") with mod_rewrite.
Example:
I have:
example.com/index.php?page=eventdetails&id=241
I would make an canonincal URL, which should look ...
2
votes
2answers
45 views
SEO of print pages
I'm interested in SEO of print pages. I have a page with an article and a link to the same address with the suffix /print/, which then shows the came content, but with a print-like stylesheet.
This ...
1
vote
1answer
51 views
Canonical URL in Analytics
As far as I know, canonical URLs are only recognized by search engines - a way to ensure that when a search engine crawls your page, no matter which URL got it there, all of the "link juice" points to ...
1
vote
1answer
34 views
Multilingual site: some pages translated, some not. Default language to visitor if no translation available
I have a multilingual site on which users are able to publish their profile information on different language. E.g. English and German. By default English version must be completed before it will be ...
1
vote
1answer
228 views
Why rev canonical link always use 302 redirect
Some sites supports RevCanonical link for self hosting short URL. Such as flickr, php.net, dopplr.
For my understand and some articles also said that. URL shorten service should use 301 permanent ...
0
votes
1answer
21 views
How to check if two urls return the same page
Lets assume that following urls are pointing to the same content.
http://example.com/content?id=123
http://example.com/content?id=123&writer=456
How can I check if those links are pointing to ...
0
votes
2answers
47 views
Generating Canonical Url in ASP.NET MVC
I want to generate Canonical url“s at my ASP.NET MVC project. I did a simple test and worked, but is it right? Can I have some problems? I see some examples much more complicated, mine seems too good ...
0
votes
1answer
44 views
301 + Canonical to link subdomain to root domain for search engines?
I'd like to have the search ranking on my root domain to carry through to my blog subdomain. I'm not sure if this makes sense, but I thought perhaps 301 Redirect from mydomain.com/blog to ...
0
votes
0answers
62 views
Enforce canonical hostname with ASP.NET Routing
Is it possible to apply "canonical hostname" rule for ASP.NET web site using ASP.NET routing? I know how to do that with IIS7 URL Rewrite but do not find a way to do it with ASP.NET Routing.
Now I ...
0
votes
1answer
359 views
Disable Url Encoding on Asp.Net HyperLink Control in Header tag
I am attempting to dynamically add a element to the html head tag in ASP.Net.
Here is my code in the master page:
public string LinkConincal
{
get
{
return ...
0
votes
1answer
104 views
How to specify canonical link in app on heroku when another domain points to it
With a domain pointing to an app on Heroku, I want to set the canonical link to the main domain, not the Heroku url, when the current url is the heroku url, and not the domain..
How do I do that and ...
0
votes
2answers
66 views
SEO, ordering and duplication of content
I run a specialized news site and am trying to apply a little bit of SEO sauce to it. One of the most important things I hear is to avoid duplication of content. I've covered all the basics but I'm ...
0
votes
1answer
198 views
asp.net mvc and canonical link: bug?
I created a simple CMS in asp.net MVC. Every article has a canonical link, which I want to use in my master page like this:
<link href="<%= Model.CanonicalLink %>" rel="canonical" />
...