我的文件位于名为web的文件夹中,我想将URL重写为
RewriteRule ^admin/mybusinessadminpannel web/index.html [NC,L]
我能够重新编写URL以便按上述方式工作,但我想像这样工作
RewriteRule ^mybusinessadminpannel web/index.html [NC,L]
但它发送了404错误。
这个方法也没关系,但我不能指定ccs和js url' s当我这样做时它不起作用
RewriteRule ^ admin / mybusinessadminpannel web / index.html [NC,L]
我的ccs示例:
<link href="../web/css/bootstrap.min.css" rel='stylesheet' type='text/css' />
答案 0 :(得分:0)
我找到了一种方式
`RewriteBase /`
`RewriteCond %{REQUEST_URI} !^/web/`
RewriteRule ^mybusinessadminpannel web/index.html [NC,L]
通过使用这种方法我能够重定向到web文件夹这是一个很好的方法吗?