1 (edited by 2013-07-27 13:30:59)

Topic: Showing Different Page

Hi,

I would like to ask how can I direct my URL to another page. For example,

Since my PHP_SELF is index.php.

So my [ Read More ] URL will be http://mysite.com/index.php?subaction=showfull&id=1374855604&ucat=1,2,3,5,6&

And my [ Next Page ] URL is http://mysite.com/index.php?start_from=5

How do I change it so that my [ Read More ] URL will be,

http://mysite.com/more.php?subaction=showfull&id=1374855604&ucat=1,2,3,5,6&

While my [ Next Page ] URL still remain as http://mysite.com/index.php?start_from=5.


Note that if I change the PHP_SELF to more.php, the [ Next Page ] URL will also change. I don't want this to happen.

Thanks

Re: Showing Different Page

if ($config_disable_pagination == 0)


After this code in core/com/allow_active_news.php add $PHP_SELF = 'more.php';  this is hack only.