>  기사  >  백엔드 개발  >  求apche重定向规则

求apche重定向规则

WBOY
WBOY원래의
2016-06-23 13:53:35732검색

RewriteRule ^(?!admin|user|inde\.php|config\.php|%{HTTP_HOST}) %{HTTP_HOST} [R=301.L] 

求除了首页及admin目录和user目录以及index.php和config.php 都转跳到首页...


回复讨论(解决方案)

RewriteEngine onRewriteBase /RewriteCond $1 !^(admin\/(.*)|$)RewriteCond $1 !^(user\/(.*)|$)RewriteCond $1 !^(index.php(.*)|$)RewriteCond $1 !^(config.php(.*)|$)RewriteRule ^(.*)$ index.php [L,QSA]

RewriteRule ^(?!admin(/.*)?|user(/.*)?|config\.php)$ index.php

这样能行吗?

重定向都用于不同域名间的转向,实际由浏览器完成
你重定向到自己,不会死循环吗?
仅仅路径不同,那就直接指派就可以了

RewriteEngine onRewriteBase /RewriteCond $1 !^(admin\/(.*)|$)RewriteCond $1 !^(user\/(.*)|$)RewriteCond $1 !^(index.php(.*)|$)RewriteCond $1 !^(config.php(.*)|$)RewriteRule ^(.*)$ index.php [L,QSA]


谢谢!!! 红色部分可以直接主域而不访问indexphp吗?
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.