RewriteRule ^question/([a-zA-Z0-9_-?]+)/?([a-zA-Z0-9_-?]+)?$ question.php?postid=$1&url_title=$2 [L,QSA]
我尝试使用所有RegEx作为下划线(_
),但这仍然不起作用。它告诉我:
404 - Page Not Found
错误
答案 0 :(得分:0)
在/q/
目录中的.htaccess顶部尝试此规则:
Options -MultiViews
RewriteEngine On
RewriteRule ^question/([\w-]+)/([^/]+)/?$ question.php?postid=$1&url_title=$2 [L,QSA,NC]