Originally posted by Steve Machol
View Post
Announcement
Collapse
No announcement yet.
Remove Redirect to /content
Collapse
X
-
Originally posted by Trevor Hannant View PostYou will need to edit your rewrite rules to how you wish them.
It seems that there are a lot of people with the issue.
Would you be able to write a tutorial on how to do so?
Comment
-
Hi all,
I believe that there is an internal redirection.
You won't be able to remove the 'content' string of the URL, unless you put hands into vBulletin core classes.
Pitty!
I've been trying to achieve the same for 3 hours, with no luck!
Cheers!
Comment
-
Reading this thread really frustrated me. This is a problem with vBulletin, and the customer support is trying to blame the end user.
The reason it is doing this is because the default script is 'content.php'. When using friendly URLs, this becomes just 'content/'.
So the default path becomes site.com/content/
Here is a hack to fix this (imo) bug:
The final plugin (@ init_startup) is:
PHP Code:if ($_SERVER['REQUEST_URI'] == '/')
{
$vbulletin->options['friendlyurl_canonical'] = 0;
}
if ($_SERVER['REQUEST_URI'] == '/content/')
{
exec_header_redirect('/', 301);
}
Comment
-
Originally posted by rossco_2005 View PostI just found the proper solution, forget about that plugin I've now disabled it and got what I want.
In admincp -> settings -> options -> content management:
Set "Point CMS default to index.php" to "yes"
Set "Site Tab URL" to "" (blank).
Comment
-
-
widgetinstance 262 (Related Topics) skipped due to lack of content & hide_module_if_empty option.
Comment