URLがあります。
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]
これはどのように組み合わせることができますか?パスの (すべての) 末尾に「/」を挿入する方法、またはスラッシュを削除するにはどうすればよいですか?