【问题标题】:URL rewriting in Yii2 not workingYii2中的URL重写不起作用
【发布时间】:2015-02-12 11:40:29
【问题描述】:

我正在使用 Yii2 Advanced 应用程序,如何转换此 URL

http://192.168.1.190/qjyii2/yii2dev3/frontend/web/index.php?r=site/login

http://192.168.1.190/qjyii2/yii2dev3/frontend/web/site/login.php\

我使用了.htaccess

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^qjyii2/yii2dev3/frontend/web/([^/]*)\.php$ /qjyii2/yii2dev3/frontend/web/index.php?r=site/$1 [L,NC,QSA]
</IfModule>

然后在 frontend/config/main.php 中进行如下 Yii 设置

'urlManager' => [
        'enablePrettyUrl' => true, 
        'showScriptName' => false, // Remove index.php from url
        'suffix' => '.php', // Add suffix to all routes (globally)
    ],

而且,这没有用

【问题讨论】:

  • 您的.htaccess 在哪里(在哪个目录中)。
  • 位于www/qjyii2/yii2dev3/下
  • 如果是这种情况,您的规则不应该类似于:frontend/web/([^/]*)\.php$ /qjyii2/yii2dev3/frontend/web/index.php?r=site/$1 [L,NC,QSA]
  • @Cyclone - 仍然无法正常工作
  • @Cyclone - 请看看这个pastebin.com/Q5kXwrqn

标签: php .htaccess yii2 yii2-advanced-app


【解决方案1】:

请在 .htaccess 文件中添加以下代码

RewriteRule . index.php [L]

完整的.htaccess文件如下

#Options +FollowSymLinks
#IndexIgnore */*

RewriteEngine on
<IfModule mod_headers.c>
   Header set Access-Control-Allow-Origin "*"
   Header set Access-Control-Allow-Methods "POST, GET, OPTIONS, PUT"
   Header set Access-Control-Allow-Headers "Content-type"
</IfModule>

# otherwise forward it to index.php
RewriteRule . index.php [L]

然后在你的 main.php 参数中设置如下

 'defaultController' => 'site',

// uncomment the following to enable URLs in path-format

        'urlManager'=>array(
            'urlFormat'=>'path',
            'showScriptName'=>false,
            'rules'=>array(
                'login'=>array('site/login'),
                '<controller:\w+>/<id:\d+>'=>'<controller>/view',
                '<controller:\w+>/<action:\w+>/<id:\d+>'=>'<controller>/<action>',
                '<controller:\w+>/<action:\w+>'=>'<controller>/<action>',
            ),
        ),

示例配置文件如下

<?php

// uncomment the following to define a path alias
// Yii::setPathOfAlias('local','path/to/local-folder');

// This is the main Web application configuration. Any writable
// CWebApplication properties can be configured here.
return array(
    'basePath'=>dirname(__FILE__).DIRECTORY_SEPARATOR.'..',
    'name'=>'JBi Test Web Application',
    'defaultController' => 'site',
    // preloading 'log' component
    'preload'=>array('log'),

    // autoloading model and component classes
    'import'=>array(
        'application.models.*',
        'application.components.*',
    ),

    'modules'=>array(
        // uncomment the following to enable the Gii tool

        'gii'=>array(
            'class'=>'system.gii.GiiModule',
            'password'=>'elby1234',
            // If removed, Gii defaults to localhost only. Edit carefully to taste.
            'ipFilters'=>array('127.0.0.1','::1'),
        ),

    ),

    // application components
    'components'=>array(

        'user'=>array(
            'loginUrl'=>array('login'),
            // enable cookie-based authentication
            'allowAutoLogin'=>true,
        ),

        // uncomment the following to enable URLs in path-format

        'urlManager'=>array(
            'urlFormat'=>'path',
            'showScriptName'=>false,
            'rules'=>array(

                'login'=>array('site/login'),

                '<controller:\w+>/<id:\d+>'=>'<controller>/view',
                '<controller:\w+>/<action:\w+>/<id:\d+>'=>'<controller>/<action>',
                '<controller:\w+>/<action:\w+>'=>'<controller>/<action>',
            ),
        ),


        // database settings are configured in database.php
        'db'=>require(dirname(__FILE__).'/database.php'),

        'errorHandler'=>array(
            // use 'site/error' action to display errors
            'errorAction'=>'site/error',
        ),

        'log'=>array(
            'class'=>'CLogRouter',
            'routes'=>array(
                array(
                    'class'=>'CFileLogRoute',
                    'levels'=>'error, warning',
                ),
                // uncomment the following to show log messages on web pages
                /*
                array(
                    'class'=>'CWebLogRoute',
                ),
                */
            ),
        ),

    ),

    // application-level parameters that can be accessed
    // using Yii::app()->params['paramName']
    'params'=>array(
        // this is used in contact page
        'adminEmail'=>'webmaster@example.com',
        'listPerPage'=> 3,
    ),
);

【讨论】:

  • 这不是这个问题的答案。 OP 要求 Yii2 并且您为 Yii 1.1 提供了解决方案。这永远都行不通。
猜你喜欢
  • 2016-12-18
  • 2023-03-24
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多