htaccess 将所有请求重定向到某个URL地址的规则
(编辑:jimmy 日期: 2024/11/13 浏览:3 次 )
复制代码 代码如下:
RewriteEngine On
RewriteCond %{REQUEST_URI} !=/tempIndex.html
RewriteRule ^ /tempIndex.html [R=301]
RewriteEngine On
RewriteCond %{REQUEST_URI} !=/tempIndex.html
RewriteRule ^ /tempIndex.html [R=301]
下一篇:Linux下查看端口占用进程号,程序名的方法