我尝试在我的 MySQL 数据库中查询一系列行,但只要值是 URL,它就不会显示。
([Handle] => air-gap-parts
[productID] => 0000000018
[active] => 1
[tag] => 0
[ImageSrc] =>)
ImageSrc 应该产生一个图片的 URL,但每次它什么都不返回。我正在使用 CodeIgniter,我想知道它是否与我的 .htaccess 文件有关?
.htaccess 文件:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
<Files "index.php">
AcceptPathInfo On
</Files>
CodeIgniter 模型查询:
function get_product_pics($handle)<br />
{
$this->db->where('handle', $handle);
$query = $this->db->get('products_test_db');
return $query->result();
}
非常感谢您的帮助!