我遵循了 desiquintans教程如何清理 url。在我的情况下 www.mySite.com/detail.php?id=324 并且它工作得很好,除了它会影响其他页面。
这就是我的 .htaccess 文件的样子:
RewriteBase /
RewriteEngine on
Options All -Indexes
DirectoryIndex index.php index.html index.htm
RewriteRule ^([0-9]+)$ detail.php?id=$1
RewriteRule ^([0-9]+)/$ detail.php?id=$1
最后一行让 Chrome 在某些具有不同路径的页面上警告我重定向周期。它不应该只影响带有'detail.php?id='扩展名的页面吗?