2012-07-15 65 views

回答

0

你寫到您的.htaccess文件這重定向到 子域/ index.php文件/ whatever_your_url_is

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

,僅供參考,您應該使用漂亮的URL的笨爲您提供:

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

應該是:

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

在哪個目錄,我應該放置這個.htaccess文件?在應用程序目錄或在哪裏? – 2012-07-15 10:41:32

+0

在/ earthplanet目錄中(其中/應用程序/系統等) – Samson 2012-07-15 10:42:18

+0

您還必須配置apache以允許通過取消註釋以下行來重寫url:httpd.conf中的LoadModule rewrite_module modules/mod_rewrite.so – Samson 2012-07-15 10:46:26