我有一个网站this.catService.getLocations(id, this.user.apiToken, this.user.role_id).then(result => {
this.locations = result;
this.location=this.locations[0].id;//here
let breakIt = false;
for (let key in this.locations) {
//...
。
这个网站有很多链接显示:
404错误。
例如,我在这里展示我的网站404 URL链接;
http://www.example.com/index.php?/hybrid-mobile-app-development.php
如何解决此问题?
答案 0 :(得分:0)
404错误表示您尝试访问该目录或文件夹不可用的文件或页面..
所以你检查你的页面或文件那个路径给出的可用目录..
答案 1 :(得分:0)
在根文件夹中尝试此.htaccess文件
1).htaccess
RewriteEngine on
RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
2)并从config.php文件中删除index.php
$config['index_page'] = '';
我希望这对你有用。