Quote:
Originally Posted by agiacosa
Would you kindly post an example of the conditional statement you used? Also, I would appreciate it if you would post the .htaccess you used.
|
Hi agiacosa
I have used basic vB conditionals system, for example :
(I preassume that that Keiths Modification are working for you)
<if condition="$show['member']">
> <b><a href=/sikhphilosophy/forumdisplay.php?f=132>Articles</a></b><br />
<else />
> <b><a href=/sikhphilosophy/f132-spn-articles-section.html>Articles Section</a></b><br />
</if>
The .htacess file that did the trick for me was :
Quote:
RewriteEngine On
Options +FollowSymLinks
RewriteRule ^t([0-9]+)-(.*).html$ showthread.php?t=$1 [L]
RewriteRule ^lastpostinthread([0-9]+).html$ showthread.php?goto=lastpost&t=$1 [L]
RewriteRule ^newpostinthread([0-9]+).html$ showthread.php?goto=newpost&t=$1 [L]
RewriteRule ^f([0-9]+)-(.*).html$ forumdisplay.php?forumid=$1 [L]
|
I hope it works for you all.
Regards