.htaccess:RewriteRule:坏标志分隔符

.htaccess:RewriteRule:坏标志分隔符

我补充道

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} /article/
RewriteRule ! ^article/\d+ redirect.php [L]

.htaccess收到 .htaccess: RewriteRule: bad flag delimiters 消息。查看了此处的相关问题,但没有帮助。

答案1

比较

RewriteRule ! ^article/\d+ redirect.php [L]
RewriteRule !^article/\d+ redirect.php [L]

是的,第二种方法有效。 ! 和模式之间不能有空格。 据我所知,Apache 文档中没有提到这一点。

相关内容