Python语言技术文档

微信小程序技术文档

php语言技术文档

jsp语言技术文档

asp语言技术文档

C#/.NET语言技术文档

html5/css技术文档

javascript

点击排行

您现在的位置:首页 > 技术文档 > C#/.NET入门教程

aspx文件格式使用URLRewriter实现静态化变成html

来源:中文源码网    浏览:203 次    日期:2024-05-15 02:24:22
【下载文档:  aspx文件格式使用URLRewriter实现静态化变成html.txt 】


aspx文件格式使用URLRewriter实现静态化变成html
使用asp.net 开发的网页程序,使用URLRewriter.dll 实现静态化。 A. 下载URLRewriter.rar,解压后放在/bin/目录下 B. 将URLRewriter.rar 加入工程引用。 C. 配置IIS 站点,将扩展名为html 指向处理程序aspnet_isapi.dll。 IIS 站点->属性->主目录->配置->添加 可执行文件和aspx 处理相同,都是 c:\windows\microsoft.net\framework\v2.0.50727\aspnet_isapi.dll 特别注意,一定不要选择检查文件是否存在。 D. 在web.config 中添加配置内容,压缩包里有。 复制代码 代码如下:
~/(\d*).html ~/user/default.aspx?link=$1 E. 在地址栏输入[url]http://localhost/1.html[/url] 指向[url]http://localhost/user/default.aspx?link=1[/url] 基于Apache HTTP Server 静态化Apache Web Server 的配置(conf/httpd.conf ) A. 在httpd.conf 文件中查找LoadModule rewrite_module modules/mod_rewrite.so 通常该行被注释,去掉“#”。如果没有就增加该行。 B. 加入代码: 复制代码 代码如下: RewriteEngine On RewriteRule ^/([0-9]+).html$ /user.php?user=$1 C. 如果网站使用通过虚拟主机来定义,请务必加到虚拟主机配置文件.htccess 中去,否则可能 无法使用。 D. 重启Apache,重新载入配置。 E. 在地址栏输入[url]http://localhost/1.html[/url] ,实际指向[url]http://localhost/user.php?user=1[/url]

相关内容