Home > Backend Development > PHP Tutorial > 关于URL重写的有关问题,

关于URL重写的有关问题,

WBOY
Release: 2016-06-13 13:10:16
Original
910 people have browsed it

关于URL重写的问题,急啊,救命啊,在线等
我用了兄弟连的一个框架brophp,不知各位有用过没。

在本地一切OK的了,可是上传到服务器上就不行

项目:xs7k

本地htaccess如下
RewriteRule ^index.html xs7k/index.php
RewriteRule ^cata/([1-9]\d*).html xs7k/index.php/cata/index/id/$1
.............
http://localhost/xs7k/cata/1.html
对应
http://localhost/xs7k/index.php/cata/index/id/1
OK
.............

上传至服务器改为
RewriteRule ^index.html index.php
RewriteRule ^cata/([1-9]\d*).html index.php/cata/index/id/$1
运行:
http://www.xs7k.com/cata/1.html 一直就是在首页 (就是这里有问题,应该相应的转到下面的页面)
http://www.xs7k.com/index.php/cata/index/id/1 这就是正确的


首页是OK的,但是其他就不行了,无论如何都是在首页,出现的提示是: 当前访问的控制器类在项目应用目录下的: ./home/controls/index.class.php 文件!

------解决方案--------------------

探讨
我用了兄弟连的一个框架brophp,不知各位有用过没。

在本地一切OK的了,可是上传到服务器上就不行

项目:xs7k

本地htaccess如下
RewriteRule ^index.html xs7k/index.php
RewriteRule ^cata/([1-9]\d*).html xs7k/index.php/cata/index/id/$1
...........……

------解决方案--------------------
框架的url 的路径的问题
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template