How can I change that so my CMS homepage is simply http://www.website.com/
Announcement
Collapse
No announcement yet.
where is the /content/ redirect
Collapse
X
-
I switched my URL's over to MOD_REWRITE, then noticed that the homepage redirects to /content/, which I don't want.
How can I change that so my CMS homepage is simply http://www.website.com/Tags: None
-
bump, since I have the same question.
Comment
-
You will need to create an .htaccess file with the relevant rewrite rules - simply switching setting won't do anything. From the help text:
Note: In order to use the Mod Rewrite Friendly URLs the appropriate rewrite rules must be defined for your server.Vote for:
- *Admin Settable Paid Subscription Reminder Timeframe*
- *PM - Add ability to reply to originator only*
- Add Admin ability to auto-subscribe users to specific channel(s)
- Highlight the correct navigation tab when you are on a custom page
- "Quick Route" Interface...
- Allow to use custom icons for individual forums
Comment
-
I'm uaing the RewriteRules from the do_not_upload-directory and they work fine. However, navigating to http://www.example.com/ always redirects me to http://www.example.com/content/
Where can I turn this redirect off?
Comment
-
Adjust the rewrite rule in the .htaccess fileVote for:
- *Admin Settable Paid Subscription Reminder Timeframe*
- *PM - Add ability to reply to originator only*
- Add Admin ability to auto-subscribe users to specific channel(s)
- Highlight the correct navigation tab when you are on a custom page
- "Quick Route" Interface...
- Allow to use custom icons for individual forums
Comment
-
Originally posted by nakedanvil View PostThe rewrite rules in the do-not-upload have no way of knowing what your path will be. Only you know that.
htaccess:
Code:RewriteEngine on # If you are having problems or are using VirtualDocumentRoot, uncomment this line and set it to your vBulletin directory. # RewriteBase /forum/ # If you are having problems with the rewrite from content/ to content.php, uncomment this line to turn MultiViews off. # Options -MultiViews RewriteCond %{REQUEST_FILENAME} -s [OR] RewriteCond %{REQUEST_FILENAME} -l [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^.*$ - [NC,L] # Forum RewriteRule ^threads/.* showthread.php [QSA] RewriteRule ^forums/.* forumdisplay.php [QSA] RewriteRule ^members/.* member.php [QSA] RewriteRule ^blogs/.* blog.php [QSA] RewriteRule ^entries/.* entry.php [QSA] RewriteCond %{REQUEST_FILENAME} -s [OR] RewriteCond %{REQUEST_FILENAME} -l [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^.*$ - [NC,L] # MVC RewriteRule ^(?:(.*?)(?:/|$))(.*|$)$ $1.php?r=$2 [QSA]
Comment
-
Originally posted by Trevor Hannant View PostAdjust the rewrite rule in the .htaccess file
Comment
widgetinstance 262 (Related Topics) skipped due to lack of content & hide_module_if_empty option.
Comment