PHP CodeIgniter不工作新页面

时间:2016-06-30 11:16:52

标签: php codeigniter

你好我想在CodeIgniter中新页面,但没有问题在哪里工作

应用/控制器/ test.php的

<?php
defined('BASEPATH') OR exit('No direct script access allowed');

class Test extends CI_Controller {
    public function test()
    {
        $this->load->view('test');
    }
}

应用/视图/ test.php的

<?php
defined('BASEPATH') OR exit('No direct script access allowed');
?>
just test page

并告诉我找不到此页面 - 图片:

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:0)

您的Controller需要有关PHP 5.6的更多信息,即:     

import networkx as nx
from pylab import *
import matplotlib.pyplot as plt
%pylab inline

#n=100 Number of nodes
ncols=10 #Number of columns in a 10x10 grid of positions

N=10 #Nodes per side
G=nx.grid_2d_graph(N,N)
labels = dict( ((i,j), i + (N-1-j) * N ) for i, j in G.nodes() )
nx.relabel_nodes(G,labels,False)
inds=labels.keys()
vals=labels.values()
inds=sorted(inds,reverse=False)
vals=sorted(vals, reverse=False)
pos2=dict(zip(vals,inds))
nx.draw_networkx(G, pos=pos2, with_labels=True, node_size = 250, node_color='lightblue')
plt.axis('off')
plt.show()

此外,您需要确保您的Apache mod_rewrite正常工作。如果没有,URL将类似于:

class Test extends CI_Controller { public function __construct() { parent::__construct() } public function index() { $this->load->view('test'); } }

如果您想重写网址,那么您可以访问http://localhost/index.php?/test/,那么您需要将http://localhost/test/文件添加到与index.php相同的目录中。例如:

.htaccess