- 论坛徽章:
- 0
|
需要建立一个文件,名为
.htaccess 由于windows下命名有限制,所以可以从linux下创建后下载下来.
本文也提供下载方便 ^_^
RewriteEngine On
RewriteBase /htmlonline
RewriteRule ^([0-9]+)\.html$ softintrotemplet.php?id=$1
#ErrorDocument 404 /errors/notfound.html
#ErrorDocument 500 /errors/internalerror.html
以上规则,其实就是下例:
http://www.htmlonline.com/1.html
转为
http://www.htmlonline.com/softintrotemplet.php?id=1;
就这么简单 ~~`
APACHE的配置:
#开启rewrite
LoadModule rewrite_module modules/mod_rewrite.so
## The following lines prevent .htaccess and .htpasswd files from being # viewed by Web clients. #
Order allow,deny
Deny from all
![]()
文件:.htaccess.rar
大小:0KB
下载:
下载
本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u3/105169/showart_2087566.html |
|