apache2 mod_rewrite 没有按预期工作

问题描述

你好,另一个 apache2 mod_rewrite 问题,我已经阅读了这里的其他人和 [apache 文档][1],但似乎遗漏了一些东西。

[1]:https://httpd.apache.org/docs/2.4/mod/mod_rewrite.html`enter 代码在这里`

我的配置文件如下所示:

<Directory /var/www/localhost/htdocs/myapp/version>
    AllowOverride All
    AddHandler cgi-script .pl
    Options ExecCGI Includes FollowSymlinks
    Require all granted
    RewriteEngine On
    RewriteBase "/myapp/version/"
    RewriteCond "rest" "rest.pl"
    RewriteRule ".*?"  "login.pl"   

我已将 apache 配置为 日志级别信息重写:trace4

当我发送: localhost/myapp/version/abc.pl

日志说

剥离每个目录前缀:/var/www/localhost/htdocs/myapp/version/abc.pl -> abc.pl 应用模式 '.*?'到 uri 'abc.pl'

abc.pl 加载的页面

我希望得到 login.pl

当我发送: 本地主机/我的应用程序/版本/休息/

日志说: rewriteCond: input='rest' pattern='rest.pl' => 不匹配

我希望得到 本地主机/我的应用程序/版本/rest.pl

感谢任何建议。

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)