使用 {pagination_links} 标记时,我似乎在新闻部分附加 /index/ 时遇到了分页问题。
我的新闻页面有一个新闻/索引的模板路径,帖子模板是新闻/帖子。
我正在使用带有新闻/帖子的结构作为附加到新闻/索引页面的列表,以添加|编辑帖子。
如果您查看相关网站: http: //www.wilbyltd.co.uk/news滚动到底部,您将看到分页,如果您单击 1|2|3 或下一页或最后一页,您将获得请求的页面,网址看起来像 /news/P6,但是现在在下一页上,如果您再次转到分页并单击其中任何一个,您会注意到它已返回到第 1 页并且 url 有 /news/ index 它似乎在链接 /index/ 之间附加或插入。
我已经尝试在频道条目中使用 paginate_base="" 但添加一个基础会阻止类别具有工作分页,类别是否还在链接之间添加 /index/?
我曾想过破解核心,但似乎是错误的方法,以防万一它得到更新。
我试过 .htaccess 来删除索引,但没有用。
RewriteRule ^/news/index/(.+)$ /news/$1 [L]
我查看了 index.php 的配置,该配置已被取消并已使用 .htaccess。
我查看了频道设置。
我试过 dynamic="off"|dynamic="on"
我知道新闻/索引它是页面查看的正确路径,但如果是这种情况,为什么它不选择分页?
如果有人能对此有所了解,我将不胜感激,这是包含分页的代码。
{exp:channel:entries channel="posts" limit="6" dynamic="on" paginate="bottom" orderby="entry_date" sort="desc"}
<div class="news-snippet span9">
<a href="{url_title_path=">
<div class="date-published textalign-center">
<span class="day">{entry_date format="%d"}</span><span class="day-suffix">{entry_date format="%S"}</span>
<span class="month">{entry_date format="%F"}</span>
</div>
</a>
<div class="news-snippet-body pull-right">
<div class="news-snippet-top-shadow">
<div class="news-snippet-bottom-shadow">
<a href="{url_title_path=">
<div class="news-snippet-content clearfix">
<div class="title">
<h3>{title}</h3>
</div>
{if news_feature_image}
<div class="clearfix image">
<img src="{news_feature_image}" />
</div>
{/if}
<p>{news_short_description}</p>
</div><!-- end content -->
</a>
<div class="news-snippet-options clearfix">
<div class="news-tags pull-left">
<i class="icon-tags"></i>
{exp:tagger:tags entry_id="{entry_id}" }
<a href="/news/tags/{tagger:urlsafe_tagname}" title="{tagger:tag_name}"><span class="label label-inverse tags">{tagger:tag_name}</span></a>
{/exp:tagger:tags}
</div>
<div class="social-share pull-right textalign-center">
<i class="icon-random"></i>
<a class="addthis_button"url="{url_title_path="title="{title}" href="http://www.addthis.com/bookmark.php?v=300&pubid=ra-5141a60a37fa6e4e">Share</a>
</div>
</div>
</div><!-- end bottom-shadow -->
</div><!-- end top-shadow -->
</div><!-- end snippet-body -->
</div><!-- end news-snippet -->
{paginate}
<div class="clearfix paginate">
{pagination_links}
<div class="total-pages pull-left">
<p>Page {current_page} of {total_pages} pages</p>
</div>
<div class="pagination pagination-mini pull-right">
<ul>
{first_page}
<li><a href="{pagination_url}" class="page-first">First Page</a></li>
{/first_page}
{previous_page}
<li><a href="{pagination_url}" class="page-previous">Previous Page</a></li>
{/previous_page}
{page}
<li><a href="{pagination_url}" class="page-{pagination_page_number} {if current_page}active{/if}">{pagination_page_number}</a></li>
{/page}
{next_page}
<li><a href="{pagination_url}" class="page-next">Next Page</a></li>
{/next_page}
{last_page}
<li><a href="{pagination_url}" class="page-last">Last Page</a></li>
{/last_page}
</ul>
</div>
{/pagination_links}
</div><!-- end clearfix -->
{/paginate}
{/exp:channel:entries}
我在 Ellis Labs 论坛上也有这几个星期:http ://ellislab.com/forums/viewthread/237601/