Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Permalinks
Can I change "/index.php?p=/discussions" to "/discussions" ? And "/index.php?p=/" to "/" ? And how to do this?
Vanilla 2.0
Vanilla 2.0
Tagged:
1
Comments
$Configuration['Garden']['RewriteUrls'] = TRUE;
TRUE = rewrite URL's, FALSE = they way you have it.
There also needs to be an .htaccess file in your root forums directory with this code in it:
RewriteEngine On
# Certain hosts may require the following line.
# If vanilla is going to be in a subfolder change this to /foldername
# RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php\?p=$1 [QSA,L]
My complete htaccess is:
# Modified
RewriteEngine On
RewriteBase /forum
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php\?p=$1 [QSA,L]
I'm using 2.03. Any ideas?
Thx
jwokelly: Edit config.php.
I was editing the config-default.php and ftp'ing it up to the server as there is no config file on my local system when VanilaForums are downloaded, its created on the server upon installation.
Thx