我有一个运行在我网站根目录下运行的内容管理系统的网站。我已经在名为“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]
我在错误和plesk控制面板上提到的apache服务器上运行。我被卡住了!
此外,我的根目录中有一个.hta文件,其中cms文件是如何确保与opencart网站不冲突的。
答案 0 :(得分:5)
终于发现了...... vqmod中的.htaccess被设置为全部拒绝。将其更改为允许,它应该可以正常工作!
答案 1 :(得分:0)
在vqmod安装过程中,您是否也更改了www.domain.com/shop/index.php和www.domain.com/shop/admin/index.php文件的文件权限?
这一点至关重要,因为在自动安装过程中会对这些文件进行更改。