RewriteRule Error: Bad flag delimiters

蓝咒 提交于 2019-12-17 22:56:48

问题


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]

This is on Ubuntu on a Digital Ocean Droplet.


回答1:


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.




回答2:


Check at the link below, and it will give you the line with error, which will be straight forward to fix

http://www.htaccesscheck.com/index.html

In your case it will clearly specify the bad flags in the below line, which can be corrected in their editor and check there itself.

RewriteRule ^dev/(.*)$ http://dev.example.com/$1 [L,R=301, NC]

to

RewriteRule ^dev/(.*)$ http://dev.example.com/$1 [L,R=301,NC]


来源:https://stackoverflow.com/questions/20890004/rewriterule-error-bad-flag-delimiters

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!