2012-12-11 48 views
0

我有一个在根文件夹上运行的codeigniter项目。在名为ems2的文件夹中的同一台服务器上,另一个项目正在运行。但是由于codeigniter项目的根.htaccess,ems2项目不起作用。我如何从ems2文件夹中删除.htaccess控件?根.htaccess控件从文件夹中删除

我的.htaccess文件有如下代码

<IfModule mod_rewrite.c> 
RewriteEngine On 
RewriteBase/

RewriteCond %{HTTP_HOST} !^www\. 
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L] 

#Removes access to the system folder by users. 
#Additionally this will allow you to create a System.php controller, 
#previously this would not have been possible. 
#'system' can be replaced if you have renamed your system folder. 
RewriteCond %{REQUEST_URI} ^codeigniter.* 
RewriteRule ^(.*)$ /index.php?/$1 [L] 

#When your application folder isn't in the system folder 
#This snippet prevents user access to the application folder 
#Submitted by: Fabdrol 
#Rename 'application' to your applications folder name. 
RewriteCond %{REQUEST_URI} ^uz\-mi.* 
RewriteRule ^(.*)$ /index.php/$1 [L] 

#Checks to see if the user is attempting to access a valid file, 
#such as an image or css document, if this isn't true it sends the 
#request to index.php 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteCond $1 !^(index\.php|images|css|style|uploads|js|robots\.txt) 
RewriteRule ^(.*)$ index.php/$1 [L] 
    </IfModule> 

    <IfModule !mod_rewrite.c> 
# If we don't have mod_rewrite installed, all 404's 
# can be sent to index.php, and everything works as normal. 
# Submitted by: ElliotHaughin 

    ErrorDocument 404 /index.php 
    </IfModule> 

    RewriteCond %{HTTP_HOST} ^encg\.ae$ [OR] 
    RewriteCond %{HTTP_HOST} ^www\.encg\.ae$ 
    RewriteRule ^/?$ "http\:\/\/www\.abc\.com\/encg" [R=301,L] 

    RewriteCond %{HTTP_HOST} ^ncg\.ae$ [OR] 
    RewriteCond %{HTTP_HOST} ^www\.ncg\.ae$ 
    RewriteRule ^/?$ "http\:\/\/www\.abc\.com\/encg" [R=301,L] 
+0

你在'ems2'目录下有一个htaccess文件吗? –

+0

没有。它是一个简单的php项目包含在这个文件夹中 – user1023242

回答

0

您可以将新的,简单的.htaccess文件添加到EMS2的项目文件夹有“NOP”内容停止处理从父文件夹的.htaccess

<IfModule mod_rewrite.c> 
    RewriteEngine On 
    RewriteBase/
</IfModule>