0

我有一个网址。

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/

在 yii 上工作,包括 css 样式和 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]

这怎么能结合?如何在路径的(全部)末尾放置“/”斜杠或删除斜杠?

4

0 回答 0