0
RewriteEngine on
RewriteBase /
RewriteRule ^(.*)$ index.php?page=$1

我的 .htaccess 文件有错误。在我的索引页面上,我有一个 PHP 来检查 $_GET['page'] 是什么,index.php当我输入domain.com/home.

我希望它在我输入时作为家返回domain.com/home

4

1 回答 1

0

你需要防止你的规则循环。如果 URI 已经是,请尝试添加一个防止重写的条件index.php

RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_URI} !index.php
RewriteRule ^(.*)$ index.php?page=$1
于 2012-10-24T23:13:48.497 回答