下面是我正在使用的htaccess文件。我的分页网址为domain.com/?page=1
。现在,即使domain.com/?page=2
传递到url,它也只获取第一页记录,而不会获取下一页记录。
我怀疑这是由于重写URL所致,因为它可以在localhost上正常工作,并且在服务器端仅提取首页记录。
<IfModule mod_rewrite.c>
AddHandler application/x-httpd-php72 .php
RewriteEngine On
# Removes index.php from ExpressionEngine URLs
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?url=$1 [PT,L]
</IfModule>
答案 0 :(得分:0)
通过将重写URL更改为RewriteRule ^(.*)$ index.php?url=$1 [QSA,PT,L]
。它解决了我的问题