我使用
重写网址RewriteRule ^page/?$ page.php [NC,L]
RewriteRule ^other/([A-Za-z0-9-]+)/?$ other.php?g=$1 [NC,L]
现在我不会以404页面为例:www.domain.com/whateverIsHere或www.domain.com/other/whateverIsHere
第二行是重命名博客并获取博客标题,但如果我输入一些单词...我仍然会得到一个页面(而不是404页面)
我还写了404页面
ErrorDocument 404 /projects/404.html
THX