I have a .htaccess file. I have two RewriteRule's that do the same thing.
This one works perfectly, and can handle a huge query:
RewriteRule ^p/(.*)(/?)$ index.php?p=$1 [QSA,L]
This one will only handle a query up to 255 characters.
RewriteRule ^(.*)(/?)$ index.php?p=$1 [QSA,L]
How do I fix this, and make both handle a huge query?