我的网址有问题。我有一个这样的网址:
http://www.example.com/mobile/home
我有
<a href='http://www.example.com/home'>Desktop</a>
在我的移动网站的页脚中,但是当我点击此链接时,我的浏览器已转到
http://www..example/mobile/homettp://www.example.com/home
然后它是FORBIDDEN
。
我的.htaccess:
<IfModule mod_rewrite.c>
RewriteEngine on
ErrorDocument 404 http://www.example.com
RewriteRule ^home$ template.php?option=home [L]
Options All -Indexes
</IfModule>
我使用两个.htaccess - 一个位于桌面网站的根文件夹中,另一个位于移动网站的根文件夹中,但它们是相同的。