this is my htaccess file:
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^(.*) url.php?p=$1 [NC]
Im trying to redirect like this: mysite.com/sometext to mysite.com/url.php?p=sometext
But with that file the browser gives me always an error; Internal Server Error, The server encountered an internal error or misconfiguration and was unable to complete your request.
Try adding some conditions to keep mod_rewrite from looping internally forever:
Or:
Right before the
RewriteRule