我是(sorta)网络开发的新手(主要是桌面开发人员)并且使用CodeIgniter遇到了问题,它是日历库。
我的问题是,当我生成日历时,我传递给函数的URL会附加到当前url的末尾!以下是相关代码:
//链接生成代码
//Get numbers of days in month
$day_count = cal_days_in_month(CAL_GREGORIAN, $month, $year);
//For each day of the month, check for appointments
for($i = 1; $i <= $day_count; $i++)
{
//Create date array
$date = array
(
'year' => $year,
'month' => $month,
'day' =>$i
);
if ($this->appointment_model->get_appointment_dates($date))
{
//If there is an appointment, add link
$appointment_data[$i] = 'view_day'. '/' . $year . '/' .$month;
}
}
//日历模板
$calendar_template ='
{table_open}<table border="1" cellpadding="0" cellspacing="0">{/table_open}
{heading_row_start}<tr>{/heading_row_start}
{heading_previous_cell}<th><a href="{previous_url}"><<</a></th>{/heading_previous_cell}
{heading_title_cell}<th colspan="{colspan}">{heading}</th>{/heading_title_cell}
{heading_next_cell}<th><a href="{next_url}">>></a></th>{/heading_next_cell}
{heading_row_end}</tr>{/heading_row_end}
{week_row_start}<tr>{/week_row_start}
{week_day_cell}<td>{week_day}</td>{/week_day_cell}
{week_row_end}</tr>{/week_row_end}
{cal_row_start}<tr>{/cal_row_start}
{cal_cell_start}<td>{/cal_cell_start}
{cal_cell_content}<a href="index.php/calendar/{content}/{day}">{day}</a>{/cal_cell_content}
{cal_cell_content_today}<div class="highlight"><a href="index.php/calendar/{content}/{day}">{day}</a></div>{/cal_cell_content_today}
{cal_cell_no_content}{day}{/cal_cell_no_content}
{cal_cell_no_content_today}<div class="highlight">{day}</div>{/cal_cell_no_content_today}
{cal_cell_blank} {/cal_cell_blank}
{cal_cell_end}</td>{/cal_cell_end}
{cal_row_end}</tr>{/cal_row_end}
{table_close}</table>{/table_close}
';
包含日历的网址如下:
http://localhost:8888/AI_Project/index.php/calendar/view_appointments/2013/06
添加到日历中的链接如下所示:
http://localhost:8888/AI_Project/index.php/calendar/view_appointments/2013/index.php/calendar/view_day/2013/06/18
我不确定为什么会这样。任何帮助,将不胜感激。如果您还需要其他任何内容,请告诉我们!
谢谢!
答案 0 :(得分:0)
请转到config/config.php
并找到此变量
$config['index_page'] = 'index.php'
确保它看起来像$config['index_page'] = '';
在同一个文件中找到$config['base_url'] = '';
,确保它看起来像这个
$config['base_url'] = 'http://localhost:8888/AI_Project/';
同样在核心文件夹(系统,应用程序)中创建.htaccess文件并确保它看起来像这样
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /AI_Project
#Removes access to the system folder by users.
#Additionally this will allow you to create a System.php controller,
#previously this would not have been possible.
#'system' can be replaced if you have renamed your system folder.
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
#When your application folder isn't in the system folder
#This snippet prevents user access to the application folder
#Submitted by: Fabdrol
#Rename 'application' to your applications folder name.
RewriteCond %{REQUEST_URI} ^application.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
#Checks to see if the user is attempting to access a valid file,
#such as an image or css document, if this isn't true it sends the
#request to index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
<IfModule !mod_rewrite.c>
# If we don't have mod_rewrite installed, all 404's
# can be sent to index.php, and everything works as normal.
# Submitted by: ElliotHaughin
ErrorDocument 404 /index.php
</IfModule>