hi friends
i use ulkoi forum script their is a problm when user go to page 2,3 page not open
i use this code for that
and my .htcess code is
my page 2 url is http://mysite/forum/showforum-32-2.html
same as page 3 http://mysite/forum/showforum-32-3.html
when i got for 2nd page its show
Not Found
The requested URL /mysite/forum/showforum-32-3.html was not found on this server.
where i do wrong in url rewite why its give error !
i use ulkoi forum script their is a problm when user go to page 2,3 page not open
i use this code for that
PHP Code:
print "</td><td colspan=\"4\" align=\"right\">";
$pages=pagination($totalrecords,$p,$config->numthreadsperpage);
if(is_array($pages))
{
print "<b>Pages: ";
foreach($pages as $key => $val)
{
if($val == $p)
{ print $key." "; }
else{ print "<a href=\"".$config->url."showforum-".$forumid."-".$val.".html\">".$key."</a> "; }
}
print "</b>";
}
PHP Code:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^showforum-([0-9]+)/p/([0-9]+).html$ showforum.php?fid=$1&p=$2 [L]
RewriteRule ^showforum-([0-9]+).html$ showforum.php?fid=$1 [L]
RewriteRule ^showthreads-([0-9]+)/p/([0-9]+)-(.*).html$ showthread.php?tid=$1&p=$2 [L]
RewriteRule ^showthreads-([0-9]+)-(.*).html$ showthread.php?tid=$1 [L]
</IfModule>
my page 2 url is http://mysite/forum/showforum-32-2.html
same as page 3 http://mysite/forum/showforum-32-3.html
when i got for 2nd page its show
Not Found
The requested URL /mysite/forum/showforum-32-3.html was not found on this server.
where i do wrong in url rewite why its give error !
Comment