mod重写问题

发布于 2024-10-30 14:22:20 字数 669 浏览 0 评论 0原文

我尝试使用此代码来隐藏 php 文件扩展名

,我有此网址 http://localhost/login/emprego.php 我想要 http://localhost/login/emprego

<IfModule mod_rewrite.c>
   Options +FollowSymLinks
   Options +Indexes
   RewriteEngine On
   RewriteCond %{SCRIPT_FILENAME} !-d
   RewriteRule ^([^\.]+)$ $1.php [NC,L]
</IfModule>

RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule !.*\.php$ %{REQUEST_FILENAME}.php [L]

结果是文件的 url两种情况下的扩展。我已经重新启动了 apache 服务器,

请问是什么问题?

谢谢

i tried this code to hide the php file extension

i have this url http://localhost/login/emprego.php and i want http://localhost/login/emprego

<IfModule mod_rewrite.c>
   Options +FollowSymLinks
   Options +Indexes
   RewriteEngine On
   RewriteCond %{SCRIPT_FILENAME} !-d
   RewriteRule ^([^\.]+)$ $1.php [NC,L]
</IfModule>

and this

RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule !.*\.php$ %{REQUEST_FILENAME}.php [L]

but the result is the url with the file extension in the two cases. I already restarted the apache server

what is the problem?

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

昇り龍 2024-11-06 14:22:20

检查 httpd.conf 文件中的 mode_rewrite 是否为 On,因为此重写规则应该可以正常工作

Check if mode_rewrite is On in your httpd.conf file, because it this rewrite rules supposed to work just fine

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文