URL映射[代码点火器]

时间:2012-07-15 10:33:34

标签: php codeigniter

我正在制作测试壁纸应用以学习CodeIgniter框架。

如何实现这一目标:

“当我输入wallpapers.example.com时,主页应该在wallpapers.example.com上打开,而不是重定向到完整链接,想要从网址中排除”/earthplanet/index.php/“。

1 个答案:

答案 0 :(得分:0)

您将此内容写入.htaccess文件以重定向到 子域/ index.php的/ whatever_your_url_is

RewriteEngine on
RewriteRule ^(.*)$ /earthplanet/index.php/$1 [L]

你是否应该使用漂亮网址的Codeigniter为您提供:

http://wallpapers.studentbro.com/earthplanet/index.php/freewallpapers?wallis=Nature%20Wallpapers

应该是:

http://wallpapers.studentbro.com/earthplanet/index.php/freewallpapers/Nature/Wallpapers