我有类似的问题我的网址就像 name.domain.com/subdoamin/store/index.php?...
我的 htaccess 文件是:
Options +FollowSymlinks
# Prevent Directoy listing
Options -Indexes
# Prevent Direct Access to files
<FilesMatch "\.tpl">
Order deny,allow
Deny from all
</FilesMatch>
#<FilesMatch "\.ini">
#Order deny,allow
#Deny from all
#</files>
# SEO URL Settings
RewriteEngine On
RewriteBase /store/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
#RewriteRule ^(.*)\?*$ index.php?_route_=$1 [L,QSA]
RewriteRule ^(.*) index.php [L,QSA]
但是它给出了一个404 Not found
错误