美文网首页
URL美化 2016.11.28

URL美化 2016.11.28

作者: yeqingwen | 来源:发表于2016-11-29 00:28 被阅读0次

apache配置

1、开启rewrite module:

a2enmod rewrite
sudo service apache2 restart

2、修改apache配置文件:

ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
RewriteEngine on
<Directory /var/www/html>
AllowOverride All
Order allow,deny
allow from all
</Directory>

Yii2配置:

1、配置config/web.php

'urlManager' => [
'enablePrettyUrl' => true,
'enableStrictParsing' => false,
'showScriptName' => false,
'suffix' => '.html',
'rules' =>[
'<module:\w+>/<controller:\w+>/<id:\d+>' => '<module>/<controller>/view',
'<controller:\w+>/<id:\d+>' => '<controller>/view',
]
],

2、添加 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

相关文章

  • URL美化 2016.11.28

    apache配置 1、开启rewrite module: a2enmod rewritesudo service ...

  • 导图笔记

    课程时间:2016.11.28

  • ThinkPHP 路由的使用(七)

    在ThinkPHP中的路由主要的用途为: 美化url路径,访问更安全; 可以制定路由规则,检验url请求。 一、路...

  • 关于url美化的问题

    声明:跟thinkphp框架没有关系 基础知识 http://localhost/phpStorm_Project...

  • Nginx+Laravel URL优化

    Nginx 在Nginx中,使用如下站点配置指令就可以支持URL美化: ``` location / { try_...

  • 2016.11.28

    钉钉日志 2016..11..28 媳妇的帅照片,盯着看好久,翻来过去的看,打心眼里为媳妇开心。白大褂变成...

  • 2016.11.28

    太阳当空照, 花儿没有笑, 一荒神儿, 只带着自己和手机出门了。 被忘在屋里的钥匙,钱包和脑袋, 请不要伤心。 下...

  • 2016.11.28

    没有一个想说话的人。

  • 2016.11.28

    会遗憾,但不会后悔。会争取,但不会强求。能低头,但有底线。会妥协,但有原则。希望这能是你。

  • 2016.11.28

    生活就是生活,不要苛求完美,太完美的一定是童话。

网友评论

      本文标题:URL美化 2016.11.28

      本文链接:https://www.haomeiwen.com/subject/nafapttx.html