我想将.htaccess
文件转换为web.config
.
这是代码
AddType application/x-httpd-php .html
RewriteEngine on
RewriteBase /
RewriteCond %{Request_Filename} !-d
RewriteCond %{Request_Filenam}e !-f
RewriteRule ^pages/([0-9A-Za-z_\-~',]+) page_details.html?category_page_title=$1 [NC]
任何人都可以帮我将此 .htaccess 文件转换为 web.config 文件。
提前致谢。