1.检测Apache是否支持mod_rewrite 

通过php提供的phpinfo()函数查看环境配置,通过Ctrl+F查找到“Loaded Modules”,其中列出了所有apache2handler已经开启的模块,如果里面包括“mod_rewrite”,则已经支持,不再需要继续设置。 

如果没有开启“mod_rewrite”,则打开目录 您的apache安装目录“/apache/conf/” 下的 httpd.conf 文件,通过Ctrl+F查找到“LoadModule rewrite_module”,将前面的”#”号删除即可。 

2.让apache服务器支持.htaccess 

如何让自己的本地APACHE服务器支持”.htaccess”呢?其实只要简单修改一下apache的httpd.conf设置就可以让 APACHE支 持.htaccess了。打开httpd.conf文件(在那里? APACHE目录的CONF目录里面),用文本编辑器打开后,查找 

Options FollowSymLinks AllowOverride None 改为 

Options FollowSymLinks AllowOverride All 就可以了。 

.3.建立.htaccess 文件 

如果是在windows平台下,刚开始还真不知道怎么建立”.htaccess”文件,因为这个文件实际上没有文件名,仅仅只有扩展名,通过普通方式是无法建立这个文件的,别着急,马上告诉你三种方法:三种方法都是先建立一个htaccess.txt的文本文件(当然,这个文本文件的名字你可以随便取),然后有三种方式给这个文件重命名: 



     全国注册建筑师、建造师考试  备考资料  历年真题  考试心得  模拟试题      

 



(1)用记事本 打开,点击文件–另存为,在文件名窗口输入”.htaccess”,注意是整个绿色部分,也就是包含英文引号,然后点击保存就行了。 

(2)进入cmd命令 窗口,通过cd切换当刚建立htaccess.txt文件的文件夹,然后输入命令:rename htaccess.txt .htaccess ,然后点击键盘Enter键即可。 4.简单.htaccess的写法,实例。   

RewriteEngine on RewriteBase / 

RewriteRule ^index.html$ 

 

 

  index.php  

RewriteRule ^tz_goods_list.html$  

 

 

tz_goods_list.php 

RewriteRule ^tz_goods_type_det_([0-9]+)\.html$   tz_goods_type_det.php?type_id=$1 RewriteRule ^tz_goods_det_([0-9]+)\.html$   tz_goods_det.php?goods_id=$1  

RewriteRule ^tz_download_list.html$    tz_download_list.php RewriteRule ^tz_download_det_([0-9]+)\.html$   tz_download_det.php?id=$1  

RewriteRule ^tz_news_list.html$  

 

 

 tz_news_list.php 

RewriteRule ^tz_news_lists_([0-9]+)\.html$   tz_news_lists.php?type_id=$1 RewriteRule ^tz_news_det_([0-9]+)\.html$   tz_news_det.php?id=$1  

RewriteRule ^tz_case_list.html$     tz_case_list.php RewriteRule ^tz_case_det_([0-9]+)\.html$   

tz_case_det.php?id=$1 

 

RewriteRule ^tz_hezuo_list.html$    tz_hezuo_list.php RewriteRule ^tz_hezuo_lists_([0-9]+)\.html$   tz_hezuo_lists.php?type_id=$1 RewriteRule ^tz_hezuo_det_([0-9]+)\.html$   tz_hezuo_det.php?id=$1  

RewriteRule ^tz_support_list.html$ 

 

 

 tz_support_list.php RewriteRule ^tz_support_lists_([0-9]+)\.html$   tz_support_lists.php?type_id=$1 RewriteRule ^tz_support_det_([0-9]+)\.html$   

tz_support_det.php?id=$1 

 

RewriteRule ^tz_tianzhu_team.html$    tz_tianzhu_team.php RewriteRule ^tz_tianzhu_service.html$    tz_tianzhu_service.php RewriteRule ^tz_tianzhu_recruit.html$    tz_tianzhu_recruit.php RewriteRule ^tz_tianzhu_payment.html$    tz_tianzhu_payment.php RewriteRule ^tz_tianzhu_friend.html$    tz_tianzhu_friend.php RewriteRule ^tz_tianzhu_culture.html$    tz_tianzhu_culture.php RewriteRule ^tz_tianzhu_contact.html$    tz_tianzhu_contact.php RewriteRule ^tz_tianzhu_company.html$ 

 

 

 tz_tianzhu_company.php 




 



 

5.静态页面里的链接如何写 

<a href="reply.php?id=^$arr.id^">     ========    <a href="reply_^$arr.id^.html">