So I'm making something that generates a smilie using the get command.
But forums don't use like .php, and I can't use .png?smilie=somin as websites do not allow it.
my wordpress blog has something/something/something.html.
All I can find to do is something.php/something/something which wont work.
I require the .png at the end.
I don't understand how WP works
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
example of WP
So how do I pull the info like I do with the get command?