RewriteRule (contact.php -> contact) + 404 重定向总是给我一个 404 页面

RewriteRule (contact.php -> contact) + 404 Redirection gives me always a 404 page

最近我修改了我的 apache 服务器中的 .htaccess 文件。这是下面的代码

RewriteEngine On
<IfModule mod_speling.c>
    CheckSpelling On
</IfModule>
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{SCRIPT_FILENAME} !-f

RewriteRule ^course/([^/.]+)$ course.php?name= [QSA,L]
RewriteRule ^course/([^/.]+)/$ course.php?name= [QSA,L]

RewriteRule ^about$ about.php [QSA,L]
RewriteRule ^about/$ about.php [QSA,L]

RewriteRule ^contact$ contact.php [QSA,L]
RewriteRule ^contact/$ contact.php [QSA,L]

RewriteRule ^downloads$ downloads.php [QSA,L]
RewriteRule ^downloads/$ downloads.php [QSA,L]

RewriteRule ^ errors/404.html [L,NC]

现在的问题是 如果我在网络浏览器中输入 URL,例如 http://localhost/about,它总是会显示自定义 404.html

我认为问题出在最后一行。

如果我删除最后一行,它将起作用。 但我也想要 404 页面。 Like 如果用户输入 http://localhost/SomeRandomString 404 页面显示在此 url.

我也在 .htaccess 文件上尝试了 ErrorDocument,但它会改变 url

有没有解决这个问题的方法。

按照以下方式获取您的 htaccess 规则文件。将它放在您的根目录中,确保在检查您的 URL 之前清除您的浏览器缓存。

RewriteEngine On
<IfModule mod_speling.c>
    CheckSpelling On
</IfModule>
##Rules that cover your uris starting with course here.
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(course)/([^/.]+)/?$ .php?name= [NC,QSA,L]

##Rules that cover your uris starting with about/contact/downloads here.    
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(about|contact|downloads)/?$ .php [NC,QSA,L]

##Rules that cover all uris which aren't matching any of the above conditions.
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ errors/404.html [L,NC,QSA]