First let me tell you I love this mod.
Also I tried to register on your site to tell you of my problem but never get the e-mail to confirm my account.
On to my problem
I run Stargate / KISS Portal with phpBB3 and installed the SEO RC4 mod on both Forums
http://www.hamradiostop.com/The problem is when the mod is done on the portal page when you put the mouse over the forum link (index.html) all I get is the domain and not the domain/index.html
On the pre-MOD Site it shows the proper link.
when I use this HTACCESS file to default the portal.php page to load, (note the last line).
First let me tell you I love this mod.
Also I tried to register on your site to tell you of my problem but never get the e-mail to confirm my account.
On to my problem
I run Stargate / KISS Portal with phpBB3 and installed the SEO RC4 mod on both Forums
http://www.hamradiostop.com/The problem is when the mod is done on the portal page when you put the mouse over the forum link (index.html) all I get is the domain and not the domain/index.html
On the pre-MOD Site it shows the proper link.
when I use this HTACCESS file to default the portal.php page to load, (note the last line).
- Code: Select all
<Files "config.php">
Order Allow,Deny
Deny from All
</Files>
<Files "common.php">
Order Allow,Deny
Deny from All
</Files>
RewriteEngine on
Rewriterule ^(.+)-f([0-9]*).html-(.+)$ ./viewforum.php?f=$2&$3
Rewriterule ^(.+)-(t|p)([0-9]*).html-(.+)$ ./viewtopic.php?$2=$3&$4
Rewriterule ^(.+)-f([0-9]*)s([0-9]*).html-(.+)$ ./viewforum.php?f=$2&start=$3&$4
Rewriterule ^(.+)-(t|p)([0-9]*)s([0-9]*).html-(.+)$ ./viewtopic.php?$2=$3&start=$4&$5
Rewriterule ^(.+)-f([0-9]*).html$ ./viewforum.php?f=$2&$3
Rewriterule ^(.+)-(t|p)([0-9]*).html$ ./viewtopic.php?$2=$3&$4
Rewriterule ^(.+)-f([0-9]*)s([0-9]*).html$ ./viewforum.php?f=$2&start=$3&$4
Rewriterule ^(.+)-(t|p)([0-9]*)s([0-9]*).html$ ./viewtopic.php?$2=$3&start=$4&$5
DirectoryIndex portal.php index.php
The forum link(index.html) will not work. if I remove the last line it works fine.
I hope I explained this correctly