.htaccess 更新htaccess rewriterule,js,css和图像后,Opencart无法加载

2o7dmzc5  于 2023-03-19  发布在  其他
关注(0)|答案(1)|浏览(140)

通常我们会有这样的opencart网址

http://localhost/sample/

我正在尝试将位置添加到此URL,类似于以下内容

http://localhost/sample/geolocation

因此,我已经修改了我的htaccess相应的工作,它的工作,但它确实打破了我的JS,CSS和图像。

Options +FollowSymlinks
Options -Indexes

# Prevent Direct Access to files
<FilesMatch "(?i)((\.tpl|\.twig|\.ini|\.log|(?<!robots)\.txt))">
 Require all denied
</FilesMatch>

RewriteEngine On

RewriteBase /sample/

RewriteRule ^sitemap.xml$ index.php?route=extension/feed/google_sitemap [L]
RewriteRule ^googlebase.xml$ index.php?route=extension/feed/google_base [L]
RewriteRule ^system/storage/(.*) 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?city=$1&_route_=$2 [L,QSA]  # This is my modification
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]

这是我的一个js url,看起来像http://localhost/sample/catalog/view/javascript/jquery/jquery-2.1.1.min.js

yqlxgs2m

yqlxgs2m1#

我已经在每个目录中创建了一个.htaccess文件,我希望跳过重写并将其放入该文件中

RewriteEngine Off

相关问题