We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://www.phpbb.de/community/viewtopic.php?p=1387611#p1387611
The text was updated successfully, but these errors were encountered:
I was observing this feature and I want to suggest this:
Add a config option on ACP. Can be done also with mentioned config file.
https://github.com/tas2580/seourls/blob/master/event/base.php#L54
Change to:
public function generate_topic_link($forum_id, $forum_name, $topic_id, $topic_title, $start = 0, $full = false) { if ($full) { return generate_board_url() . '/' . ( $OPTION ? '' : $this->title_to_url($forum_name) . '-f' . $forum_id . '/') . $this->title_to_url($topic_title) . '-t' . $topic_id . ($start ? '-s' . $start : '') . '.html'; } return $this->phpbb_root_path . ( $OPTION ? '' : $this->title_to_url($forum_name) . '-f' . $forum_id . '/') . $this->title_to_url($topic_title) . '-t' . $topic_id . ($start ? '-s' . $start : '') . '.html'; }
And on htaccess, https://github.com/tas2580/seourls/wiki/Webserver-configuration
Add:
RewriteRule ^(.)-t([0-9])-s([0-9]).html viewtopic.php?t=$2&start=$3&%{QUERY_STRING} [L] RewriteRule ^(.)-t([0-9]*).html viewtopic.php?t=$2&%{QUERY_STRING} [L]
(I've tested a regular forum removing "f" parameter and it works without problem).
Cheers!
Sorry, something went wrong.
how can i added arabic litter to link utf-8 include arabic litter by the way
No branches or pull requests
https://www.phpbb.de/community/viewtopic.php?p=1387611#p1387611
The text was updated successfully, but these errors were encountered: