The second number is the detail page that will be used to display the news.
maybe you can check http://forum.cmsmadesimple.org/index.ph ... 475.0.html
see item 5
Cheers
SEF News URLS, behaving odd
Re: SEF News URLS, behaving odd
Try adding this rule to your htaccess, and then manually type the url how it was before, if it works, you will need to modify one file on the news module.. let me know
Code: Select all
RewriteRule ^news/([a-zA-Z0-9_-]+)/([0-9]+)/([0-9]+)/ news/$2/$3/$1/ [L]
Re: SEF News URLS, behaving odd
action.default.php
look for the pretty url generated url, something like
and change it to
Should do the job!
look for the pretty url generated url, something like
Code: Select all
$prettyurl = 'news/'.$row['news_id'].'/'.($detailpage!=''?$detailpage:$returnid)."/$aliased_title";
Code: Select all
$prettyurl = 'news/'.$aliased_title.'/'.$row['news_id'].'/'.($detailpage!=''?$detailpage:$returnid)."/";
Re: SEF News URLS, behaving odd
remember that if you upgrade that module or the whole system again, you´ll to do this same modification to action.default.php