用htaccess在URL中强制使用index.php

时间:2019-05-01 16:53:16

标签: .htaccess

最近两个小时,我一直在阅读stackoverflow和apache手册,试图找到解决方法,但是如果要访问的目录(http://domain.ext)我没有找到,我没有找到任何解决方法index.php尽可能出现在网址(http://domain.ext/index.php)中。

如果有人能帮助我,我将非常感激,谢谢。

RewriteEngine on
RewriteRule index.php

2 个答案:

答案 0 :(得分:1)

您可以使用此:

RewriteEngine on RewriteRule ^$ /index.php?

(但是您不会在浏览器中看到它,因为重写引擎只是直接指向正确的文件/目录,而无需从浏览器更改url)

答案 1 :(得分:0)

我刚刚找到了对我有用的

RewriteEngine On
RewriteRule ^/?$ $1/folder/index.php$2 [R=301,L]