-2

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

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

http://educonnects.com/profile/recruiter_profile

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

请帮忙,我是codeigniter的新手。

4

1 回答 1

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>  

(或者)

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

于 2013-10-01T12:38:44.627 回答