RewriteEngine on
RewriteRule ^([a-zA-Z0-9]{1,3})\/([0-9])\.html$ thread.php?board=$1&thread=$2
Here is my .htaccess file. Let me explain you how it should work:
website.com/vg/1337.html => website.com/thread.php?board=vg&thread=1337
in the other words:
website.com/x/y.html => website.com/thread.php?board=x&thread=y
x - 1-3 symbols, A-z, 0-9;
y - unlimited amount of symbols, 0-9;
It does look pretty simple, but... website.com/vg/1337.html just leads me to 404.
What am I doing wrong?