本文介绍了重写规则错误:错误标志符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在我的.htaccess文件我得到重写规则采用这种重写规则。任何人都可以点我在正确的方向吧。谢谢你。
Using this RewriteRule in my .htaccess file I'm getting RewriteRule: Bad flag delimiters which is returning a 500 error in the browser. Can anyone point me in the right direction please. Thanks.
RewriteEngine On
RewriteCond %{HTTP_HOST} ^example.com [NC]
RewriteRule ^dev/(.*)$ http://dev.example.com/$1 [L,R=301, NC]
这是在Ubuntu上的数字海洋滴。
This is on Ubuntu on a Digital Ocean Droplet.
推荐答案
原来这是因为在旗声明前N空间[L,R = 301,NC]的。我把它改为[L,R = 301,NC]现在它的工作原理治疗。
Turns out it was because of the space before N in the flag declaration [L,R=301, NC]. I changed it to [L,R=301,NC] and now it works a treat.
这篇关于重写规则错误:错误标志符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!