如何在重写规则 href 链接中添加斜杠
我正在 htaccess 中使用重写规则,但我在网站上遇到错误, 在链接中添加/(斜杠)时
我的示例代码:
RewriteEngine On
RewriteRule ^categories/(.*)$ ?act=directory&category=$1 [L]
实际上我想从类别列表中调用此链接,其中href链接
categories/category-name
现在是如果我像这样调用此链接
categories-category-name
那么它工作正常,但如果我添加斜杠然后该网站看起来没有 css :( 我只能看到无样式的文本。
提前致谢 请指教。
i am using the rewrite rules in htaccess but i am getting error on site,
while adding a / (slash) into the link
My Example Code:
RewriteEngine On
RewriteRule ^categories/(.*)$ ?act=directory&category=$1 [L]
actually i want to call this link from the category listing where the href link is
categories/category-name
now if i call this link like this
categories-category-name
then it works fine, but if i add the slash then the site looks as it doesnt have the css :(
only unstyled text i can see.
Thanks In Advance
Please Advise.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要在 css 路径中添加斜杠
这将起作用
You need to add a slash in your css path
This will work