【发布时间】:2016-02-03 12:31:38
【问题描述】:
我在 xampp 中使用 codeigniter,我的代码中有两个问题
超链接不起作用我尝试了许多不同的方法但不起作用
<a href="<?php base_url();?> Login_v.php">Log in</a>
图片也不显示
<img src="images/login.jpg" width="150" height="40" />
我认为我的 .htaccess 中的错误
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /helloworld/
# Disable rewrite for valid directory/files
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
#map all request urls to a specific controller method
RewriteRule ^(.*)$ index.php?/{controller}/{method}/$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>
请任何人帮助我
【问题讨论】:
-
base_url()正在返回 url 不显示它所以使用echo base_url(); -
您需要回显基本网址:
<a href="<?= base_url();?>Login_v.php">Log in</a> -
它工作非常感谢你
-
但是图片不显示能不能帮我显示一下?
标签: php codeigniter xampp