虽然有这种结构:
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
任何人都可以帮助我?
问候和感谢!