如何将基于yii框架的网站去掉index.php,实现长尾关键词优化?
- 内容介绍
- 文章标签
- 相关推荐
本文共计366个文字,预计阅读时间需要2分钟。
移除`index.php`的方法:
1.启用Apache的mod_rewrite模块,并重启Apache;
2.编辑项目中的`/config/web.php`文件;
3.在与`index.php`同级的目录下添加`.htaccess`文件。
具体步骤:
1.启用Apache的mod_rewrite模块,并重启Apache;
2.编辑`/config/web.php`;
3.在相应目录下添加`.htaccess`文件。
yii去掉index.php的方法:1、开启apache的mod_rewrite模块,并重启apache;2、编辑项目中的/config/web.php文件;3、在与index.php文件同级目录下添加文件。
具体方法:
(推荐教程:php图文教程)
1、开启apache的mod_rewrite模块
去掉LoadModule rewrite_module modules/mod_rewrite.so前的“#”符号
确保DocumentRoot "/Library/WebServer/Documents"<Directory "..."></Directory>中有“AllowOverride All”
重启apache,命令: sudo apachectl restart
2、在项目中的/config/web.php中添加代码:
components'=>array( ... 'urlManager' => [ 'enablePrettyUrl' => true, 'showScriptName' => false, 'rules' => [ '<controller:\w+>/<action:\w+>'=>'<controller>/<action>', ], ], )
(视频教程推荐:php视频教程)
3、在与index.php文件同级目录下(/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
以上就是yii怎样去掉index.php的详细内容,更多请关注自由互联其它相关文章!
本文共计366个文字,预计阅读时间需要2分钟。
移除`index.php`的方法:
1.启用Apache的mod_rewrite模块,并重启Apache;
2.编辑项目中的`/config/web.php`文件;
3.在与`index.php`同级的目录下添加`.htaccess`文件。
具体步骤:
1.启用Apache的mod_rewrite模块,并重启Apache;
2.编辑`/config/web.php`;
3.在相应目录下添加`.htaccess`文件。
yii去掉index.php的方法:1、开启apache的mod_rewrite模块,并重启apache;2、编辑项目中的/config/web.php文件;3、在与index.php文件同级目录下添加文件。
具体方法:
(推荐教程:php图文教程)
1、开启apache的mod_rewrite模块
去掉LoadModule rewrite_module modules/mod_rewrite.so前的“#”符号
确保DocumentRoot "/Library/WebServer/Documents"<Directory "..."></Directory>中有“AllowOverride All”
重启apache,命令: sudo apachectl restart
2、在项目中的/config/web.php中添加代码:
components'=>array( ... 'urlManager' => [ 'enablePrettyUrl' => true, 'showScriptName' => false, 'rules' => [ '<controller:\w+>/<action:\w+>'=>'<controller>/<action>', ], ], )
(视频教程推荐:php视频教程)
3、在与index.php文件同级目录下(/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
以上就是yii怎样去掉index.php的详细内容,更多请关注自由互联其它相关文章!

