yii框架怎么设置伪静态

广告:宝塔Linux面板高效运维的服务器管理软件 点击【 https://www.bt.cn/p/uNLv1L 】立即购买

yii框架怎么设置伪静态

Apache服务器的配置

修改httpd.conf配置文件

1、将LoadModule rewrite_module modules/mod_rewrite.so前面的注释#号去掉。

2、添加如下内容:

<Directory "path/to/basic/web">    # use mod_rewrite for pretty URL support    RewriteEngine on    # If a directory or a file exists, use the request directly    RewriteCond %{REQUEST_FILENAME} !-f    RewriteCond %{REQUEST_FILENAME} !-d    # Otherwise forward the request to index.php    RewriteRule . index.php    # ...other settings...</Directory>
登录后复制

注意其中的path/to/basic/web修改成你的根目录,最后不要忘记重启apache服务器。

(推荐教程:yii框架)

Nginx服务器的配置

修改nginx.conf配置文件,在域名对应的server{}内添加如下内容:

location / {    # Redirect everything that isn't a real file to index.php    try_files $uri $uri/ /index.php$is_args$args;}
登录后复制

最后不要忘记重载配置文件。

yii2代码的配置

修改config/web.php,在components数组中添加如下内容(去掉前后的注释)

'components' => [    ...    'urlManager' => [        'enablePrettyUrl' => true,        'showScriptName' => false,        'rules' => [        ],    ],    ...],
登录后复制

这时再刷新网页,就能看到连接的形式发生了改变。此时默认会将/index.php?r=controller/action这样的形式修改为/controller/action(如果含有参数,则将/index.php?r=controller/action&...改为/controller/action?...)。

更多编程相关内容,请访问9543建站博客编程教程栏目!

以上就是yii框架怎么设置伪静态的详细内容,更多请关注9543建站博客其它相关文章!

广告:SSL证书一年128.66元起,点击购买~~~

9543建站博客
一个专注于网站开发、微信开发的技术类纯净博客。
作者头像
admin创始人

肥猫,知名SEO博客站长,14年SEO经验。

上一篇:php怎么接入workerman
下一篇:手把手带你看看小程序如何优化?(实践总结)

发表评论

关闭广告
关闭广告