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 守护进程/worker 环境 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- HTTP 与 FTP 上传 2021-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 使用 PDO 转义列名 2021-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01