求助!阿里云弹性Web托管linux apache2.4.17 shopex后台伪静态.htaccess失效,怎么解决
下面是.htaccess代码
#$Id: root.htaccess 78270 2013-03-26 03:14:12Z zhangjunhua $
#$Id: 2013-01-22 14:19:11Z zhangjunhua: apache+fastcgi 下rewrite不能很好的处理中文$
AddEncoding gzip .jgz
AddType "text/javascript;charset=UTF-8" .jgz
AddEncoding gzip .zcss
AddType "text/css;charset=UTF-8" .zcss
<IfModule mod_rewrite.c>
RewriteEngine on
# 设置RewriteBase的值为你的商店目录地址
RewriteBase /
RewriteRule ^themes/.*\.(html|xml)$ / [F]
RewriteRule ^core/.*\.(php)$ / [F]
RewriteCond %{REQUEST_FILENAME} \.(html|xml|json|htm|php|php2|php3|php4|php5|phtml|pwml|inc|asp|aspx|ascx|jsp|cfm|cfc|pl|cgi|shtml|shtm|phtm)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?$1 [QSA,NC,L]
</IfModule>
<IfModule mod_security.c>
SecFilterEngine Off
SecFilterScanPOST Off
</IfModule>
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。