我有一个网站运行在我的网站根目录中运行的内容管理系统。我已经在名为“shop”的子目录中安装了最新版本的 Opencart - 所以 www.domain.com/shop/
一切正常,我可以按预期使用 Opencart。
我需要安装 VQmod,因此已将文件上传到商店文件夹的根目录,我已经设置了正确的权限,尝试 755 和 777 但没有运气。
每次我访问 www.domain.com/shop/vqmod/install 时都会收到 403 错误。
与 www.domain.com/shop/vqmod/ 相同
Forbidden
You don't have permission to access /shop/vqmod/install on this server.
Apache Server at domain.com Port 80
除了取出 index.php 之外,我的 .hta 文件几乎是标准的?从网址和重写规则中说更改主页链接。
RewriteBase /shop/
RewriteRule ^sitemap.xml$ index.php?route=feed/google_sitemap [L]
RewriteRule ^googlebase.xml$ index.php?route=feed/google_base [L]
RewriteRule ^download/(.*) /index.php?route=error/not_found [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]
RewriteCond %{QUERY_STRING} ^route=common/home$
RewriteCond %{REQUEST_METHOD} !^POST$
RewriteRule ^index\.php$ http://%{HTTP_HOST}? [R=301,L]
我在错误提到的 apache 服务器和 plesk 控制面板上运行。我被困住了!
另外,我的根目录中有一个 .hta 文件,其中 cms 文件是我如何确保与 opencart 网站不冲突的。