Reputation: 14835
Here is the rule that is causing a 500 error. When I remove it, my site functions fine. Ideas?
RewriteRule ^pin/([^]+)/ pin.php?id=$1 [L]
Upvotes: 1
Views: 33
Reputation: 785246
There is an incorrect regex here [^]+
. Try this rule:
RewriteEngine On
RewriteRule ^pin/([^/]+)/?$ /pin.php?id=$1 [L,QSA,NC]
Upvotes: 2