Forum Moderators: phranque
http://example.com/sig1.php?rsn=Poketech
and thats supposed to be an image (that what above is just an example) well sometimes when I go to forums and try and put it into my signature it gives me this error:
Sorry, dynamic pages in the [IMG] tags are not allowed
Is there anyway to like by pass that to get it to show the image? Or is there a different way?
while you're at it...
Make sure the www. is always there:
RewriteCond %{HTTP_HOST} ^example.com
RewriteRule (.*) http://www.example.com/$1 [R=301,L]
Remove .php from all your pages:
RewriteRule ^(.*)\/$ $1.php [NC]
options +followsymlinks
RewriteEngine on
RewriteRule ^sig1/([^/]+) /sig1.php?rsn=$1 [NC]
RewriteRule ^(.*)\/$ $1.php [NC]
and then I have a file named sig1.php but for some reason when I go to that url http://www.example.com/sig1/PokeTech it gives me an internal server error.