求apche重定向规约
程序员文章站
2024-01-15 13:34:58
...
求apche重定向规则
RewriteRule ^(?!admin|user|inde\.php|config\.php|%{HTTP_HOST}) %{HTTP_HOST} [R=301.L]
求除了首页及admin目录和user目录以及index.php和config.php 都转跳到首页...
------解决方案--------------------
------解决方案--------------------
RewriteRule ^(?!admin(/.*)?
------解决方案--------------------
user(/.*)?
------解决方案--------------------
config\.php)$ index.php
这样能行吗?
------解决方案--------------------
重定向都用于不同域名间的转向,实际由浏览器完成
你重定向到自己,不会死循环吗?
仅仅路径不同,那就直接指派就可以了
RewriteRule ^(?!admin|user|inde\.php|config\.php|%{HTTP_HOST}) %{HTTP_HOST} [R=301.L]
求除了首页及admin目录和user目录以及index.php和config.php 都转跳到首页...
------解决方案--------------------
RewriteEngine on
RewriteBase /
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
这样能行吗?
------解决方案--------------------
重定向都用于不同域名间的转向,实际由浏览器完成
你重定向到自己,不会死循环吗?
仅仅路径不同,那就直接指派就可以了
相关文章
相关视频
推荐阅读