我正在尝试重写一些遗留下来的Joomla URL,这个网站现在使用ExpressionEngine作为内容管理系统,但它们不起作用。
ExpressionEngine网址会被重写,也就是从网址中删除index.php。
这就是我得到的:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} !=on
# This is the one that's not working
RewriteRule /index.php?option=com_chronocontact&Itemid=
抱歉,如果这是一个菜鸟问题,网络管理员不知不觉变成了网络开发人员:)我正在尝试了解如何获得当前会话it并将其放入javascript中,其中sessid= (当前会话it),其在网址上,并在您访问搜索页面时生成。例如:
<script language="JavaScript">
var url= "http://www.southerntiredirect.com/online/system/ajax_search_manufacturer?sessid=????????";
</script><script type
请参阅CodeIgniter 2中的以下控制器
<?php
class user extends CI_Controller {
function __construct() {
parent::__construct();
}
function index($id) {
// do something here
}
}
?>
所以我的网址应该是
但我真正想要的是不能在网址中有‘索引’,所以网址应该是
有人知道我是如何做到这一点的吗?
提前感谢
我的申请表中有一个网址,我想检查给定的网址是否来自www.domain.com。
现在我在这个领域的干净方法中使用这个解决方案,但我认为这不是最好的方法……
def clean_link(self):
link = self.cleaned_data['link']
if 'domain.com' not in link:
raise forms.ValidationError('You only can add a domain.com URL.')
return link
例如,如果我输入将是