如何使用htaccess修复网址

时间:2011-09-28 17:08:45

标签: php .htaccess

我有一个最初为http://web.com/index.php/home/funct/的网址,我想通过删除index.php来改变它,使其变为http://web.com/home/funct/

1 个答案:

答案 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".