Opencart .htaccess - 允许访问指定文件夹
我有一个 OpenCart 站点,但需要创建一个可访问的附加 /test 目录。
默认情况下,所有请求都会发送到 OpenCart。我试图让它发送除 /test 之外的所有内容。我已经在这个网站上尝试了一些建议,但要么没有任何反应,要么收到 500 内部服务器错误。
这是 OpenCart 提供的 .htacccess 的重写部分:
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]
我想我需要在 RewriteBase
之后添加一行类似以下内容的内容,但目前还无法进行任何操作。
RewriteCond %{REQUEST_URI} !^/test
谢谢!
I've got an OpenCart site, but need to create an addtional /test directory which is accessible.
By default, all requests are sent to OpenCart. I'm trying to make it send all except /test. I've tried a few suggestions on this site already, but either nothing happens, or I get a 500 Internal Server Error.
This is the rewrite part of the OpenCart provided .htacccess:
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]
I think I need a line like the following after RewriteBase
, but can't get anything working yet.
RewriteCond %{REQUEST_URI} !^/test
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为
应该这样做
I think
should do it
RewriteBase /YOUR_SUB_DIR/
将“YOUR_SUB_DIR”替换为您的
RewriteBase /YOUR_SUB_DIR/
replace 'YOUR_SUB_DIR' with yours