更改 xampp 的端口导致项目 url 导致 404
Changing port of xampp caused project url leads to 404
80端口被系统占用。所以我将 xampp apache 服务器的默认端口(80)更改为端口 81。它正在工作,我的 url 中唯一的变化是,我必须在 url 中输入端口号,例如这使它工作
localhost:81/phpmyadmin //example
但是当我在 xampp 中将我的一个 codeigniter 项目传输到我的电脑时,所有 link 标签 url 开始显示为 404。我的 css 不是不会被选中。这是 link 标签中的 url 就像
<link rel="stylesheet" href="css/style.css">
当我检查并右键单击 link 标签中的 href
并单击选项 Open in new tab
然后在新选项卡中,按照 url 打开
localhost/project_name/css/style.css //PORT number is missing
但是这个应该是这样打开的
localhost:81/project_name/css/style.css
为什么我的 codeigniter 项目 link 没有选择 localhost:81
而只是选择 localhost
。有什么想法吗?
如果您更改了端口号,则需要更改 config.php 中的 base_url。在你的情况下应该是。
localhost:81/project_name/
80端口被系统占用。所以我将 xampp apache 服务器的默认端口(80)更改为端口 81。它正在工作,我的 url 中唯一的变化是,我必须在 url 中输入端口号,例如这使它工作
localhost:81/phpmyadmin //example
但是当我在 xampp 中将我的一个 codeigniter 项目传输到我的电脑时,所有 link 标签 url 开始显示为 404。我的 css 不是不会被选中。这是 link 标签中的 url 就像
<link rel="stylesheet" href="css/style.css">
当我检查并右键单击 link 标签中的 href
并单击选项 Open in new tab
然后在新选项卡中,按照 url 打开
localhost/project_name/css/style.css //PORT number is missing
但是这个应该是这样打开的
localhost:81/project_name/css/style.css
为什么我的 codeigniter 项目 link 没有选择 localhost:81
而只是选择 localhost
。有什么想法吗?
如果您更改了端口号,则需要更改 config.php 中的 base_url。在你的情况下应该是。
localhost:81/project_name/