缩短URL在Code点火器


Shortening URL in Code Igniter

我正在为一个网站编写CodeIgniter框架。我上传了我的网站,它工作了。现在我要做的是做一些秘密的URL快捷方式,只有几个人知道,但仍然很容易记住。我想让www.mywebsite.com/secretpage来加载我的秘密页面。然而,codeigniter似乎不允许直接访问文件。我听说我可以使用。htaccess使用url路由,但它似乎不起作用。

使用编码器路由http://ellislab.com/codeigniter/user-guide/general/routing.html可以缩短url。添加url帮助器来自动加载。

你不能直接访问php,因为控制器顶部的代码阻止了它。

的例子,为什么你不能直接访问。

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

如何缩短路由示例

www.yourdomain.com/secretpage/

$route['secretpage'] = "folder/controller/index";
$route['secretpage'] = "folder/controller/index";

也使用htaccess

Options +FollowSymLinks
Options -Indexes
DirectoryIndex index.php
RewriteEngine on
RewriteCond $1 !^(index'.php|images|robots'.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
从配置文件中删除index.php