Posted by bsherwood on May 31, 2009 at 7:53pm
Jump to:
| Project: | Newswire |
| Version: | 6.x-3.2 |
| Component: | Miscellaneous |
| Category: | task |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Issue Summary
The permalink links are not really permanent since they link to the actual URL alias. I would say the permalink option should use Drupal's internal paths (i.e /node/1, /node/2, etc...).
Currently if a user decides to change any of the paths URL structure, the permalink will break.
Comments
#1
Yes, I know its not the permalink but I wonder if site owners really want the internal URL pointing back at their nodes, I was tending to think its better for SEO if the URL alias was used, unless the site has global redirect installed.
Thoughts? Get rid of it altogether maybe (thats my thinking).
#2
My thoughts on this are:
1. If your going to have a permalink in the theme, then it should at least be permanent.
2. Other sites (mostly blogs) have a permalink that points to an internal URL and not a SEO alias.
3. This feature should not rely on other contrib modules (e.g global redirect).
Other ideas?
#3
Not really, I think we should get rid of it in the next version.
#4
I'd like to see the permalink gone as well. Is there a way I can get rid of it myself by editing one of the theme files? (Sorry, I'm still a bit new to Drupal.)
#5
Yes, just remove it from node.tpl.php
#6
The code you should remove from node.tpl.php is:
<?php if ($page == 1): ?><h5 class="permalink"><a href="<?php print $node_url; ?>" rel="bookmark"><?php print t('Permalink'); ?></a></h5>
<?php endif; ?>
#7
Thanks!