Links consist of addresses and captions. Most people confuse addresses with links, while you're free to give a link's caption the address aswell.olsserik wrote:keyword in links
That's an accent, not an apostroph. Most people confuse the keys or just don't know their existence at all.olsserik wrote:Let´s
This address is faulty - only one question mark is expected as separator from the URI and its parameters.olsserik wrote:https://www.phpbb.com/community/viewforum.php?f=72?r=3-0-0-mod-requests
https://www.phpbb.com/community/viewforum.php?f=72&seo=Mine_is_the_longest
. This approach however is prone to having several different URIs to the very same content, and that will earn you penalties by the search engines.Do you now see the difference between "link", "address" and "caption"?olsserik wrote:Code: Select all
[url=https://www.phpbb.com/community/viewforum.php?f=72]MOD Request[/url]
How many persons actually understand the internet?olsserik wrote:how many persons do like that? 1%?
How many people gets inspired to evolve in forums when they get arrogant, off topic, comments?AmigoJack wrote:How many persons actually understand the internet?
Code: Select all
if ($topic_id && !$forum_id){
$sql = 'SELECT forum_id
FROM ' . TOPICS_TABLE . "
WHERE topic_id = $topic_id";
$result = $db->sql_query($sql);
$forum_it = (int) $db->sql_fetchfield('forum_id');
$db->sql_freeresult($result);
$view_topic_url_params = 'f=' . $forum_it . '&t=' . $topic_id;
if ($topic_id && $start){
$view_topic_url_params = 'f=' . $forum_it . '&t=' . $topic_id . '&start=' . $start;
}
$view_topic_url = append_sid("{$phpbb_root_path}viewtopic.$phpEx", $view_topic_url_params);
$view_topic_url = str_replace('&', '&', $view_topic_url);
header("HTTP/1.1 301 Moved Permanently");
header("Location:" . $view_topic_url);
header("Connection: close");
}