关于apache服务器rewrite,该如何解决
程序员文章站
2022-06-11 14:58:10
...
关于apache服务器rewrite
我的目的是在地址栏输入的url:
http://localhost/project/ShortURL/index.php/149Ui3
自动重写为
http://localhost/project/ShortURL/index.php?controller=jump&method=jemp&code=149Ui3
apache中添加配置如下(apache2.conf):
但是始终不能跳转,请问应该如何正确配置呢.
------解决思路----------------------
1.httpd.conf中rewrite模块是否正确开启
2.你写入的这个配置文件是否有效
我的目的是在地址栏输入的url:
http://localhost/project/ShortURL/index.php/149Ui3
自动重写为
http://localhost/project/ShortURL/index.php?controller=jump&method=jemp&code=149Ui3
apache中添加配置如下(apache2.conf):
# Turn on rewrite engine
Options +FollowSymlinks
RewriteEngine on
# More rules below
RewriteRule ^index.php/(.*)$ index.php?controller=jump&method=jump&code=$1 [QSA]
但是始终不能跳转,请问应该如何正确配置呢.
------解决思路----------------------
1.httpd.conf中rewrite模块是否正确开启
2.你写入的这个配置文件是否有效
相关文章
相关视频