以2个不同的目录

以2个不同的目录

本文介绍了重定向2个不同的领域,以2个不同的目录+的.htaccess的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

下面是我的目录结构:

root
root/cakephp
root/wordpress

如何重定向

  • example.com/cakephp CakePHP的目录
  • 和重定向URL的其余字preSS
  • example.com/cakephp to cakephp directory
  • and redirect the rest of urls to wordpress

我们有定制的网站,我们希望把它分别与CakePHP的配置和所有的rerequest如 example.com/cakephp 应该去CakePHP的目录和requestes却会我们的CMS(这是字preSS中字preSS文件夹)。

We have bespoke website that we want to configure it separately with cakephp and all the rerequest like example.com/cakephp should go to cakephp directory and the rest of requestes goes to our CMS (which is wordpress in wordpress folder).

推荐答案

在根目录的.htaccess有这样的规则:

In the root .htaccess have this rule:

RewriteEngine On

RewriteRule !^(cackephp|wordpress)/ wordpress%{REQUEST_URI} [L,NC]

这篇关于重定向2个不同的领域,以2个不同的目录+的.htaccess的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-25 14:18