我正在尝试创建一个 mod 重写表达式以从 localhost/1234 重定向到 localhost/controller/action?param=1234。
我的 bootstrap.php 中有以下内容,它以 localhost/number 形式重定向所有请求
$routePublic = new Zend_Controller_Router_Route_Regex('^[\d]+(\.[\d]+){0,1}$', array( 1 => '' ,'controller' => 'content', 'action' => 'public'));
但是,我需要将一个参数传递给我的 publicAction。
谢谢您的帮助。像我这样的新手比你想象的更欣赏它!