htaccess重写规则没有发生

时间:2015-01-11 23:03:10

标签: .htaccess url mod-rewrite rewrite

虽然有这种结构:

domain.com

    -index.php

    frontend

        .htaccess
        index.php

        account

             -index.php

在我的.htaccess中:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?values=$1 [L]
</IfModule>

当我打电话时:

http://domain.com/account

我得到:

404 - Not Found

任何人都可以帮助我?

问候和感谢!

0 个答案:

没有答案