Codeigniter从url中删除目录

时间:2013-10-01 12:20:59

标签: php codeigniter

我有以下域名: - http://educonnects.com/jCat/profile/recruiter_profile

我正在使用codeigniter框架。 我希望我的域名可以是: -

http://educonnects.com/profile/recruiter_profile

Jcat是已安装codeigniter的项目名称。

请帮助,我是codeigniter的新手。

1 个答案:

答案 0 :(得分:0)

在文件夹中添加.htaccess文件

您可以在application / config / route.php中设置默认路由控制器名称

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

        <IfModule !mod_rewrite.c>
            ErrorDocument 404 /index.php
        </IfModule>  

(OR)

您可以在apache httpd.conf文件中设置subversion。 您将了解如何设置subversion