我已经设法消除了输入index.php
网址的需要,但仍然可以这样做。我不希望这样,并希望阻止用户通过 url 访问我的应用程序,例如/index.php/home
or/index.php/contact
甚至/index.php
.
有谁知道如何做到这一点?
我已经设法消除了输入index.php
网址的需要,但仍然可以这样做。我不希望这样,并希望阻止用户通过 url 访问我的应用程序,例如/index.php/home
or/index.php/contact
甚至/index.php
.
有谁知道如何做到这一点?
在你.htaccess
写在顶部
DirectoryIndex my_new_index.php
RewriteEngine on
RewriteCond $1 !^(my_new_index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /my_new_index.php/$1 [L]
将您的index.php
文件重命名为my_new_index.php
如果您使用的是 Apache,那么只需设置一个重写规则将用户从 index.php 重定向到 /
RewriteRule ^/index\.php$ /
RewriteRule ^/index\.php/(.*) /$1
确切地。这是一个例子:
RewriteRule ^foo\.html$ bar.html
或者您可以使用如下变量:
^hotsheet/(.*)$ http://www.tstimpreso.com/hotsheet/$1