The Joomla! Extensions Directory ™

jh98

Reviews(1)
 
byjh98, November 8, 2011
Hi, everything worked perfect for me, except for the pagination. When I click on the link for page 2,3,4 it goes to the first page. My articles end with .html and the pages for that article with html?start=1, html?start=2 and so on.

I believe I need to insert some command in the .htaccess but I don't know what. Any ideas?
Owner's reply

Add the following code to .htacess, it will solve the pagination problem.
RewriteCond %{QUERY_STRING} !(start=([0-9]+))$ [NC]
RewriteCond %{DOCUMENT_ROOT}/contentstatic/%{REQUEST_URI} -f
RewriteRule (.*) /contentstatic/$1 [L]