当使用htaccess从url中删除index.php时,站点将重定向到xampp主页

时间:2016-06-21 06:07:31

标签: php .htaccess url rewriting

我试图从url中删除index.php。我使用.htaccess文件来删除它。但它正在重定向到xampp主页。

这里我的.htaccess代码是

        RewriteEngine On         RewriteBase /

    # Removes index.php from ExpressionEngine URLs
    RewriteCond %{THE_REQUEST} ^GET.*index\.php [NC]
    RewriteCond %{REQUEST_URI} !/system/.* [NC]
    RewriteRule (.*?)index\.php/*(.*) /$1$2 [R=301,NE,L]

    # Directs all EE web requests through the site index file
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ /index.php/$1 [L]

提前致谢

0 个答案:

没有答案