David Karol
04-27-2011, 01:12 AM
I have vB installed on soundforums.net/
The forum is at soundforums.net/live
The main page redirects to /content with the search engine friendly URLs, using mod rewrite that was provided with vB:
RewriteEngine on
# This file is only needed if you have set the CMS URL in your admincp and you are
# using the mod_rewrite option for friendly urls. If this is the case, copy this file
# to your cms stub directory.
# If you are having problems or are using VirtualDocumentRoot, uncomment this line and set it to your vBulletin directory.
# RewriteBase /cms-stub-directory/
# 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]
# MVC
RewriteRule ^(?:(.*?)(?:/|$))(.*|$)$ $1.php?r=$2 [QSA]
First, is it possible to remove the rewrite adding /content to the home page?
Second, I installed a wiki at soundforums.net/wiki. Navigating there goes directly to the home page (soundforums.net/content). How can I use that directory for the wiki?
Thank you
The forum is at soundforums.net/live
The main page redirects to /content with the search engine friendly URLs, using mod rewrite that was provided with vB:
RewriteEngine on
# This file is only needed if you have set the CMS URL in your admincp and you are
# using the mod_rewrite option for friendly urls. If this is the case, copy this file
# to your cms stub directory.
# If you are having problems or are using VirtualDocumentRoot, uncomment this line and set it to your vBulletin directory.
# RewriteBase /cms-stub-directory/
# 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]
# MVC
RewriteRule ^(?:(.*?)(?:/|$))(.*|$)$ $1.php?r=$2 [QSA]
First, is it possible to remove the rewrite adding /content to the home page?
Second, I installed a wiki at soundforums.net/wiki. Navigating there goes directly to the home page (soundforums.net/content). How can I use that directory for the wiki?
Thank you