apache_conf 重定向Htaccess
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了apache_conf 重定向Htaccess相关的知识,希望对你有一定的参考价值。
index.php to /
RewriteCond %{REQUEST_URI} ^(.*)index\.php$
RewriteCond %{THE_REQUEST} !bitrix/*
RewriteRule ^ %1 [R=301,L]
Redirect 301 /news/1/ /news/2/
RewriteCond %{THE_REQUEST} ^.*/index\.php
RewriteRule ^(.*)index.php$ /$1 [R=301,L]
#https
RewriteCond %{HTTPS} off
RewriteCond %{HTTP:X-Forwarded-Proto} !=https
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !(.*)/$
RewriteRule ^(.*[^/])$ https://%{HTTP_HOST}/$1/ [L,R=301]
以上是关于apache_conf 重定向Htaccess的主要内容,如果未能解决你的问题,请参考以下文章
apache_conf 重定向Htaccess
apache_conf Htaccess重定向
apache_conf 重定向htaccess
apache_conf 常见.htaccess重定向
apache_conf 常见.htaccess重定向
apache_conf 301重定向Htaccess