301跳转怎么写

wunwun111 2019-10-3 1889

打开apache配置文件httpd.conf,然后查找AllowOverride属性,并设置为AllowOverride All,即可启用htaccess

htaccess 301跳转如何实现

案例1 从一个页面跳转到另一个页面(简单写法)

Redirect 301 ^old.html$ http://www.xiezewen.com/new.html

实现old.html向new.html的永久跳转,但是后面的路径必须是完整的路径

案例2 URL重写

RewriteEngine on
RewriteRule ^old.html$ http://www.15qq.cn/new.html [r=301]
RewriteRule ^products/([^/]+)/([^/]+)/([^/]+) product.php?cat=$1&brand=$2&prod=$3

第一行 打开URL重写的引擎,必须有;

第二行 一个案例,实现old.html向new.html的永久跳转,并且在浏览器中直接显示新地址

第三方 一个案例,匹配表达式,能够将product.php?cat=turntables&brand=technics&prod=a2251的链接伪静态成url products/turntables/technics/a2251

.htaccess 404如何设置

<Files ~ "^.(htaccess|htpasswd)$">
deny from all
</Files>
ErrorDocument 404 /404.html
order deny,allow

.htaccess 503如何设置

<Files ~ "^.(htaccess|htpasswd)$">
deny from all
</Files>
ErrorDocument 503 /503.html
order deny,allow

注:上述错误友好页面,需要在网站根目录建立404.html等静态文件。

htaccess 阻止部分ip访问

order allow,deny
deny from 202.114.44.1
allow from allOrde

htaccess apache服务器缓存(可节约服务器资源)

ExpiresActive on
ExpiresByType image/gif "access plus 1 month"
ExpiresByType image/png "access plus 1 month"
ExpiresByType image/jpg "access plus 1 month" 
ExpiresByType image/jpeg "access plus 1 month"

htaccess 开启服务器Gzip压缩

<ifmodule mod_deflate.c>
AddOutputFilter DEFLATE html xml php js css
</ifmodule>

htaccess 在html页面运行php程序

AddHandler x-mapp-php6 .html .htm

htaccess 设置php脚本执行时间

php_value max_execution_time 500


最新回复 (1)
  • eaier2 2019-10-3
    0 2
    解決域名被墻 不限内容
    需要做  301跳转联系我
    (48H 不稳定无理由退款)
返回
发新帖