php – 如何在yii框架中自动设置url友好

前端之家收集整理的这篇文章主要介绍了php – 如何在yii框架中自动设置url友好前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我只是学习yii框架并阅读本教程
yii how to setup url

但我不知道,假设我有10个控制器,我应该在配置文件中逐个定义控制器吗?
是否有更好的方法来为所有控制器设置友好的网址,例如www.yoursite.com/yourController/yourAction/yourID?

我认为codeigniter自动做到了…… yii怎么样?

在/protected/config/main.PHP添加..
'urlManager'=>array(
        'urlFormat'=>'path','showScriptName' => false,),

在你的web根目录中.htaccess ..

Options +FollowSymLinks
IndexIgnore */*
RewriteEngine on

# if a directory or a file exists,use it directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

# otherwise forward it to index.PHP
RewriteRule . index.PHP
原文链接:https://www.f2er.com/php/135402.html

猜你在找的PHP相关文章