我如何在yii上完成重定向

时间:2013-01-30 11:35:26

标签: apache mod-rewrite url-rewriting yii rewrite

我有一个网址。

http://www.example.org/index.php/
http://www.example.org/index.php
http://www.example.org/
http://www.example.org
http://example.org/index.php/
http://example.org/index.php

我需要重写

http://example.org/

工作包括css样式和yii上的js。 现在我用这个.htaccess

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php

我找到了这个解决方法

RewriteEngine On
Options +FollowSymLinks
RewriteCond %{HTTP_HOST} ^www.yoursite.org(.*)
RewriteRule ^(.*)$ http://yoursite.org/$1 [R=301,L]

这怎么结合起来? 如何在路径的(全部)末尾添加“/”斜杠或删除斜杠?

0 个答案:

没有答案