我有一个最初为http://web.com/index.php/home/funct/的网址,我想通过删除index.php来改变它,使其变为http://web.com/home/funct/
答案 0 :(得分:6)
如果您使用的是Apache服务器,请创建一个名为.htaccess
的文件并将其放入其中:
<IfModule mod_rewrite.c>
RewriteEngine on
# If the file/dir is NOT real go to index
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [QSA,L]
</IfModule>
然后从链接中删除对“/index.php/”的引用,当服务器找不到“home / funct”时,它将寻找“/index.php/home/funct".