2015-06-01 45 views
1

我放置了一個.htaccess代碼來從amazon服務器的URL中刪除index.php。放置後,我的jquery post功能不適合我。請幫我解決這個問題。這裏是我的.htaccess代碼。由於在Codeigniter中的htaccess文件,jquery post無法工作

<IfModule mod_rewrite.c> 
    RewriteEngine On 
    RewriteBase/

    #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} ^system.* 
    RewriteRule ^(.*)$ /index.php?/$1 [L] 

    #When your application folder isn't in the system folder 
    #This snippet prevents user access to the application folder 
    #Rename 'application' to your applications folder name. 
    RewriteCond %{REQUEST_URI} ^application.* 
    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 
    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. 
    ErrorDocument 404 /index.php 
</IfModule> 

和jQuery郵編是

$.post("<?php echo base_url();?>user/createfile", 
{newfile: value},function(result) 
{ 
$('#create').hide(); 
}); 
+0

什麼不工作?你遇到了什麼錯誤?詳細信息,請。 –

+0

當我從URL – Alekhya

+0

中刪除「index.php」時,我的jquery文章沒有重定向到「createfile」,我停用了htaccess並嘗試了。然後我的jquery帖子正在工作。 – Alekhya

回答

0

嘗試

$.post("<?php echo site_url('user/createfile'); ?>", {newfile: value}).done(function(result){ 

    alert(result); 
     $('#create').hide(); 


     }); 

使用SITE_URL代替BASE_URL()

+0

試圖不工作 – Alekhya

+0

嘗試htaccess的RewriteEngine敘述這段代碼在 的RewriteCond%{} REQUEST_FILENAME!-f 的RewriteCond%{} REQUEST_FILENAME!-d 重寫規則^(。*)$的index.php/$ 1 [L] – Ismail

0

使用此(的.htaccess應該放置在應用程序之外的文件夾)

<IfModule mod_rewrite.c> 
RewriteEngine On 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteRule ^(.*)$ index.php/$1 [L] 
</IfModule>