您的位置首页生活百科

动态页面301到静态页面怎么写

动态页面301到静态页面怎么写

PHP重定向通常使用.htaccesshtaccess可以帮我们实现包括:文谨蚂件夹密码保护、用户自动重定向、自定义错误页面、改变你的文件扩展名核晌做、封禁特定IP地址的用户、只允许特定IP地址的用户、禁止改衡目录列表,以及使用其他文件作为index文件等一些功能。实现举例RewriteEngine OnRewriteBase /# Rewrite 系统规则请勿修改 RewriteCond %{HTTP_HOST} http://www.fhss.com.cn/exmobi.php/$ [NC] RewriteRule ^(.*)$ http://www.fhss.com.cn/exmobi.htm/$1 [R=301,L] RewriteCond %{HTTP_HOST} http://www.fhss.com.cn/solution.php/$ [NC] RewriteRule ^(.*)$ http://www.fhss.com.cn/soluti.htm/$1 [R=301,L] #php转 htmRewriteRule ^/exmobi([0-9]+)+\.htm$ /exmobi.php?aid=$1RewriteRule ^/solution([0-9]+)+\.htm$ /solution.php ?aid=$1