mod_rewrite 错误 404 如果 .php

时间:2023-01-19
本文介绍了mod_rewrite 错误 404 如果 .php的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我重写了我的网址以方便用户使用.例如,我有一个名为 user.php 的页面,我将其重写为/user.但是用户仍然可以使用 user.php.如果他们请求带有 .php 扩展名的页面,我可以重定向到 404 吗?

I rewrite my urls to be user friendly. For example I have a page called user.php that I rewrite to /user. But a user can still use user.php. Can I redirect to a 404 if they request a page with a .php extension?

Options -MultiViews +FollowSymlinks -Indexes
RewriteEngine on


RewriteRule ^user/([0-9]+)$ user.php?id=$1 [L,QSA]

谢谢.

推荐答案

RewriteCond %{THE_REQUEST} .php[ /?].*HTTP/
RewriteRule ^.*$ - [R=404,L]

这篇关于mod_rewrite 错误 404 如果 .php的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

上一篇:htaccess 多参数重写规则 下一篇:如何使用 Apache Mod_rewrite 删除 php 扩展,同时保留 GET 参数?

相关文章

最新文章