Vanilla 2.2 URL Problem

URL of a discussion : http://domainname.com/index.php?p=/discussion/9/test-post
Can I remove "index.php?p=" part>
I need URL like http://domainname.com/discussion/9/test-post (like this community)
Tagged:
0
Best Answer
-
R_J Admin
You only have to add
$Configuration['Garden']['RewriteUrls'] = true;
to your /conf/config.php7
Answers
You need add to your .htaccess rewriterule
Check with this
RewriteRule ^(.*)$ index.php\?p=$1 [QSA,L]
You only have to add
$Configuration['Garden']['RewriteUrls'] = true;
to your /conf/config.php