在过去的几个小时里一直被困在这里。让我简单地通过以下几行来说明我的问题。
这里是
1) 我要转换的页面的 Joomla 绝对 URL:http ://classifiedads4free.com/index.php?option=com_adsmanager&view=front
然后:
创建菜单项并激活 SEF 网址:所以现在别名变为http://classifiedads4free.com/ads
之后:
我在 URL 后面添加了一个查询字符串,因此它变为:http://classifiedads4free.com/ads?country=Singapore。
只是想知道我是否可以在顶部设置网址 http://classifiedads4free.com/ads?country=Singapore。--> http://singapore.classifiedads4free.com
尝试在我的 .htaccess 文件上使用绝对 URL,以下是代码:
第一次尝试:
RewriteCond %{HTTP_HOST} ^(.+)\.classifiedads4free\.com$
RewriteCond %{HTTP_HOST} !^www\.classifiedads4free\.com$
RewriteCond %{REQUEST_URI} !^.*\.(jpe?g|png|gif|bmp)$ [NC]
RewriteRule (.*) ads?country=%1 [L]
第二次尝试:
RewriteCond %{HTTP_HOST} ^(.+)\.classifiedads4free\.com$
RewriteCond %{HTTP_HOST} !^www\.classifiedads4free\.com$
RewriteCond %{REQUEST_URI} !^.*\.(jpe?g|png|gif|bmp)$ [NC]
RewriteRule (.*) index.php?option=com_adsmanager&view=front&country=%1 [L]
但是,我似乎无法让重定向工作。它不断将我重定向回我的主页,这不是我所要求的。
如果有人可以在这里提供一些帮助,将不胜感激。一整天都在努力。