Rewrite URL with .htaccess to hide PHP extension(使用 .htaccess 重写 URL 以隐藏 PHP 扩展名)
问题描述
我有一个问题,我正在为特定应用开发网络服务.上周我将备份从 server1 转移到 server2,因为那一刻我的 .htaccess 将不再工作.
I've a question, I'm developing a webservice for a specific app. Last week I transferred my back-up from server1 to server2, since that moment my .htaccess won't work anymore.
我的网络服务的网址是:http://apps.holtesdesign.nl/inholland/apiv0/
The url for my webservice is: http://apps.holtesdesign.nl/inholland/apiv0/
这个 url 工作正常,加载错误报告模块:http://apps.holtesdesign.nl/inholland/apiv0/bugreport.php
This url works fine, to load the bugreport module: http://apps.holtesdesign.nl/inholland/apiv0/bugreport.php
但网址应该是:http://apps.holtesdesign.nl/inholland/apiv0/bugreport
当您打开最后一个 url 时,您会看到它会导致内部服务器错误.你知道这怎么可能吗?
When you'll open the last url, you'll see that it will result in an internal server error. Do you know how it's possible?
我的 .htaccess 看起来像:
My .htaccess looks like:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^(.*)$ $1.php
服务器在 CentOS 上运行,我已经检查过 mod_rewrite 是否正在运行...
The server is running on CentOS, and I've already checked if mod_rewrite is functioning...
我希望你们能帮助我!
干杯,
杰尔默
推荐答案
这将解决它:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteCond %{REQUEST_URI} !/$
RewriteRule ^(.*)$ $1.php
<小时>
如果它不起作用,请更正 Wamp 服务器的设置:
If it doesn't work correct the settings of your Wamp Server:
- 左键单击 WAMP 图标
- 阿帕奇
- Apache 模块
- 左键单击 rewrite_module.
这篇关于使用 .htaccess 重写 URL 以隐藏 PHP 扩展名的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 .htaccess 重写 URL 以隐藏 PHP 扩展名
- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01
- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01
- PHP foreach() 与数组中的数组? 2022-01-01
- 覆盖 Magento 社区模块控制器的问题 2022-01-01
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- PHP - if 语句中的倒序 2021-01-01
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01