Pretty urls doesn't work in paginationof News
Posted: Sun Mar 18, 2012 11:02 am
All urls in News module work normally, but in a pagination in a summary: it wasn't changed after beginning of using pretty urls. Is it a bug of this module?
My .htaccess
CMS Made Simple⢠1.10.3 "Hyacinthe"
News 2.12.3
My .htaccess
Code: Select all
Options +FollowSymLinks
RewriteEngine on
RewriteBase /
# 301 Redirect all requests that don't contain a dot or trailing slash to
# include a trailing slash
# except for form POSTS
RewriteCond %{REQUEST_URI} !/$
RewriteCond %{REQUEST_URI} !\.
RewriteCond %{REQUEST_METHOD} !POST$
RewriteRule ^(.*) %{REQUEST_URI}/ [R=301,L]
# Rewrites urls in the form of /parent/child/
# but only rewrites if the requested URL is not a file or directory
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ index.php?page=$1 [QSA]
RewriteRule ^News/rss(.+)$ index.php?page=News/rss$1 [S=1]Code: Select all
$config['url_rewriting'] = 'mod_rewrite';1.6
$config['page_extension'] = '.html';
$config['use_hierarchy'] = true;
$config['query_var'] = 'page';CMS Made Simple⢠1.10.3 "Hyacinthe"
News 2.12.3