通常我们会有这样的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
1条答案
按热度按时间yqlxgs2m1#
我已经在每个目录中创建了一个
.htaccess
文件,我希望跳过重写并将其放入该文件中