Sto cercando di trasformare le mie pagine del forum in html e sto utilizzando lo script di able2know

ho modificato le pagine come spiegato nel file,poi ho messo nella stessa cartella /forum/ il file .htaccess che è il seguente:
Codice PHP:
RewriteEngine On 
RewriteRule 
^forum.* index.php [L,NC]
RewriteRule ^post-([0-9]*).html&highlight=([a-zA-Z0-9]*) viewtopic.php?p=$1&highlight=$[L,NC]
RewriteRule ^post-([0-9]*).* viewtopic.php?p=$[L,NC]
RewriteRule ^view-poll([0-9]*)-([0-9]*)-([a-zA-Z]*).* viewtopic.php?t=$1&postdays=$2&postorder=$3&vote=viewresult [L,NC]
RewriteRule ^about([0-9]*).html&highlight=([a-zA-Z0-9]*) viewtopic.php?t=$1&highlight=$[L,NC]
RewriteRule ^about([0-9]*).html&view=newest viewtopic.php?t=$1&view=newest [L,NC]
RewriteRule ^about([0-9]*)-([0-9]*)-([a-zA-Z]*)-([0-9]*).* viewtopic.php?t=$1&postdays=$2&postorder=$3&start=$[L,NC]
RewriteRule ^about([0-9]*)-([0-9]*).* viewtopic.php?t=$1&start=$[L,NC]
RewriteRule ^about([0-9]*).* viewtopic.php?t=$[L,NC]
RewriteRule ^about([0-9]*).html viewtopic.php?t=$1&start=$2&postdays=$3&postorder=$4&highlight=$[L,NC]
RewriteRule ^mark-forum([0-9]*).htmlviewforum.php?f=$1&mark=topics [L,NC]
RewriteRule ^updates-topic([0-9]*).htmlviewtopic.php?t=$1&watch=topic [L,NC]
RewriteRule ^stop-updates-topic([0-9]*).htmlviewtopic.php?t=$1&unwatch=topic [L,NC]
RewriteRule ^forum-([0-9]*).html viewforum.php?f=$[L,NC]
RewriteRule ^forum-([0-9]*).* viewforum.php?f=$[L,NC]
RewriteRule ^topic-([0-9]*)-([0-9]*)-([0-9]*).* viewforum.php?f=$1&topicdays=$2&start=$[L,NC]
RewriteRule ^ptopic([0-9]*).* viewtopic.php?t=$1&view=previous [L,NC]
RewriteRule ^ntopic([0-9]*).* viewtopic.php?t=$1&view=next [L,NC
ho modificato solo la prima riga la parola forums in forum visto che la cartella dove contengo i file del forum è quella

poi ho inserito il robots.txt nella root
Codice PHP:
Disallowforum/post-*.html
Disallowforum/updates-topic.html*$ 
Disallowforum/stop-updates-topic.html*$ 
Disallowforum/ptopic*.html
Disallowforum/ntopic*.html
anche qui la cartella è diventata forum da forums

quindi vado su sito/forum/index.html ma stranamente mi torna alla index del sito!
invece su sito/forum/index.php tutto ok!

help?