PHP, URL rewriting with htaccess, and Microsoft IIS Url Rewriting(PHP、使用 htaccess 重写 URL 和 Microsoft IIS Url Rewriting)
问题描述
我习惯使用 Apache 服务器,所以当启用 mod_rewrite 时,我可以创建一个 htaccess 文件并使用 URL 重写.
I am used to working with Apache servers, so when mod_rewrite is enabled, I can create an htaccess file and use URL rewriting.
这是我的 htaccess 文件:
Here's my htaccess file:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]
现在我已经建立了这个使用这个 URL 重写模块的站点,但我发现它是一个 Microsoft 服务器.我可以使用我的 htaccess 文件吗?有什么我需要改变才能让它工作的吗?如何判断微软服务器上是否设置了 URL 重写?
Now I've built this site that uses this URL rewriting module but I have come to learn that it is a Microsoft server. Can I use my htaccess file? Is there something I need to change to get it to work? How can I tell if URL rewriting is set up on the Microsoft server?
推荐答案
您可以在 Ionic 的 Isapi Rewrite 中按原样使用您的配置过滤器(IIRF).
IIRF 是免费的、开源的.
IIRF is free, open-source.
这篇关于PHP、使用 htaccess 重写 URL 和 Microsoft IIS Url Rewriting的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:PHP、使用 htaccess 重写 URL 和 Microsoft IIS Url Rewriting


- PHP - if 语句中的倒序 2021-01-01
- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- 覆盖 Magento 社区模块控制器的问题 2022-01-01
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
- PHP foreach() 与数组中的数组? 2022-01-01
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01
- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01