Wamp自动重写url?

时间:2019-05-31 12:37:10

标签: php apache

我在Windows Wamp上面临URL重写的一些问题。问题是每当我访问以下URL时

merge master

它将加载主页。问题是,即使禁用了mod_rewrite模块,wamp也会自动从URL中隐藏php扩展。 我也没有使用.htaccess文件。 这是非常奇怪的行为,这是我第一次收到此问题。

http://localhost/test/index

or 

http://localhost/test/index.php

httpd-vhosts.conf

Softwares:
        - WAMPSERVER 64BIT - 3.1.4
        - PHP Version 7.2.10
        - Apache Version 2.4.35

任何关闭此自动重写的解决方案,这样我就可以自己通过htaccess文件进行操作。预先感谢。

1 个答案:

答案 0 :(得分:1)

最终解决了该问题。问题出在Wamp 3软件上,默认情况下使用+ MultiViews指令。

要解决此问题,只需更换

Options +Indexes +Includes +FollowSymLinks +MultiViews

使用

Options +Indexes +Includes +FollowSymLinks -MultiViews

希望它对某人有帮助!