我有一个index.php,它处理所有路由index.php?page=controller(简化)只是为了将逻辑与视图分开。

Options +FollowSymlinks
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([\w\d~%.:_\-]+)$ index.php?page=$1 [NC]

基本上:http://localhost/index.php?page=controller

http://localhost/控制器/

谁能帮我添加重写

http://localhost/controller/param/value/param/value(等等)

那将是:

http://localhost/controller/?param=值

我无法让它与重写规则一起使用。

控制器可能如下所示:

    <?php
if (isset($_GET['action'])) {
 if ($_GET['action'] == 'delete') {
do_Delete_stuff_here();
}
}
?>

并且:

    <?php
if (isset($_GET['action']) && isset($_GET['x'])) {
 if ($_GET['action'] == 'delete') {
do_Delete_stuff_here();
}
}
?>

答案

基本上人们想说的是,你可以像这样制定重写规则:

RewriteRule ^(.*)$ index.php?params=$1 [NC, QSA]

这将使您的实际 php 文件如下所示:

index.php?params=param/value/param/value

你的实际 URL 会像这样:

http://url.com/params/param/value/param/value

在你的 PHP 文件中,你可以通过分解来访问你的参数,如下所示:

<?php

$params = explode( "/", $_GET['params'] );
for($i = 0; $i < count($params); $i+=2) {

  echo $params[$i] ." has value: ". $params[$i+1] ."<br />";

}

?>

来自: stackoverflow.com