With IntegraMod?
Hope you can help. I'm running with IntegraMOD (IM) which is a premodded modular PHPBB derivative.
I've added in the parts of the SEO Mod where possible, a lot of the code that does need changing is not in there, or I can't find equivalents, so have changed what I can - that I will have to live with
So one to the Q's@
1) IM also uses a portal.php as well as the index.php, with the portal being the site entry page as it carries news, etc.
What I need to know is how to change the static URL mod so that it will also work with that page as well as the regular index.
I did try changing the .htaccess file to be as :
Code:RewriteEngine On
RewriteRule ^forums.* index.php [L,NC]
RewriteRule ^forums.* portal.php [L,NC]
RewriteRule ^post-([0-9]*).html&highlight=([a-zA-Z0-9]*) viewtopic.php?p=$1&highlight=$2 [L,NC]
RewriteRule ^post-([0-9]*).* viewtopic.php?p=$1 [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=$2 [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=$4 [L,NC]
RewriteRule ^about([0-9]*)-([0-9]*).* viewtopic.php?t=$1&start=$2 [L,NC]
RewriteRule ^about([0-9]*).* viewtopic.php?t=$1 [L,NC]
RewriteRule ^about([0-9]*).html viewtopic.php?t=$1&start=$2&postdays=$3&postorder=$4&highlight=$5 [L,NC]
RewriteRule ^mark-forum([0-9]*).html* viewforum.php?f=$1&mark=topics [L,NC]
RewriteRule ^updates-topic([0-9]*).html* viewtopic.php?t=$1&watch=topic [L,NC]
RewriteRule ^stop-updates-topic([0-9]*).html* viewtopic.php?t=$1&unwatch=topic [L,NC]
RewriteRule ^forum-([0-9]*).html viewforum.php?f=$1 [L,NC]
RewriteRule ^forum-([0-9]*).* viewforum.php?f=$1 [L,NC]
RewriteRule ^topic-([0-9]*)-([0-9]*)-([0-9]*).* viewforum.php?f=$1&topicdays=$2&start=$3 [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]
But unfortunately this did not do the job. Any ideas as to what I should use?
2) Once the static Mod is in there and operating if one wishes to make a post wheich refers to another post i.e. using the URL BBCode should one link to the actual dymanic link or try to link to the static?
I'm assuming the dymanic link as the Mod will rewrite it for the spiders.
Is this correct?
Hope you can help. Cheers in advance!