RewriteEngine on
RewriteRule ^([a-zA-Z0-9]{1,3})\/([0-9])\.html$ thread.php?board=$1&thread=$2
這是我的.htaccess文件。讓我來解釋一下你應該如何工作:.htaccess正則表達式問題
website.com/vg/1337.html => website.com/thread.php?board=vg&thread=1337
在換句話說
:
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;
它看起來很簡單,但... website.com/vg/1337.html只是導致我到404.
我在做什麼錯?
error_log對這個請求說了什麼? – imm