本文介绍了RewriteRule 错误:错误的标志分隔符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在我的 .htaccess 文件中使用这个 RewriteRule 我得到 RewriteRule: Bad flag delimiters 它在浏览器中返回 500 错误.任何人都可以指出我正确的方向.谢谢.
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 上的 Digital Ocean Droplet.
This is on Ubuntu on a Digital Ocean Droplet.
推荐答案
原来是因为标志声明 [L,R=301, NC] 中 N 前的空格.我将其更改为 [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.
这篇关于RewriteRule 错误:错误的标志分隔符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!