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.
相关文章