-1

我正在制作一个测试壁纸应用程序来学习 CodeIgniter 框架。

如何实现这一点:

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

4

1 回答 1

0

您将其写入您的 .htaccess 文件以重定向到 subdomain/index.php/whatever_your_url_is

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

仅供参考,您应该使用漂亮的 URL 的 Codeigniter 为您提供:

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

应该:

http://wallpapers.studentbro.com/earthplanet/index.php/freewallpapers/Nature/Wallpapers
于 2012-07-15T10:37:36.273 回答