我如何才能让这个Openacart类别和产品重写不起作用,帐号页面是起作用的:
Options +FollowSymlinks
# Prevent Directoy listing
Options -Indexes
# SEO URL Settings
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Sub-domain
RewriteCond %{HTTP_HOST} ^http://my.domain.com$
RewriteCond %{REQUEST_URI} !.*\.(ico|gif|jpg|jpeg|png|js|css)
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]
RewriteRule login$ /index.php?route=account/login [L]这里的工作,这个Openacart类别和产品重写是工作,帐号页面不是工作:
Options +FollowSymlinks
# Prevent Directoy listing
Options -Indexes
# SEO URL Settings
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !.*\.(ico|gif|jpg|jpeg|png|js|css)
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]
# Sub-domain
RewriteCond %{HTTP_HOST} ^http://my.domain.com$
RewriteRule login$ /index.php?route=account/login [L]发布于 2014-05-18 03:52:34
这就是令人惊讶的。订单htaccess文件必须如下所示:
Options +FollowSymlinks
Options -Indexes
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} !.*\.(ico|gif|jpg|jpeg|png|js|css)
RewriteRule login$ /index.php?route=account/login [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !.*\.(ico|gif|jpg|jpeg|png|js|css)
RewriteRule ^([^?]*) index.php?_route_=$1/ [L,QSA]该子域名指导没有任何内容。
https://stackoverflow.com/questions/23701972
复制相似问题