6

次の書き換えルールがあります。

#remove the www.
RewriteCond %{HTTP_HOST} ^www.website.co.uk$ [NC]
RewriteRule ^(.*)$ http://local.website.co.uk/$1 [R=301,L]

#this removes php extention
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.php [NC,L] 

# stops you accessing url with.php
RewriteCond %{THE_REQUEST} ^[A-Z]+\ /([^.?\ ]+)\.php
RewriteRule ^([^.]+)\.php(/.+)?$ /$1%{PATH_INFO} [R=301]

誰かが末尾のスラッシュを使用してサイトにアクセスしようとすると、末尾のスラッシュを削除するルールを追加したいと考えています。

例えば

website.co.uk/cheese/ は /cheese にリダイレクトする必要があります

ご覧のとおり、ursl を .php 拡張子でリダイレクトするルールがありますが、どこから始めればよいかわかりません。

末尾の URL を削除したくないルート フォルダーにディレクトリがありますが、それらの無視ルールを追加できます。

乾杯

4

1 に答える 1

15

以下の変更を .htaccess ファイルに加えます

RewriteEngine on
RewriteBase /

#existing rule
#remove the www.
RewriteCond %{HTTP_HOST} ^www.website.co.uk$ [NC]
RewriteRule ^(.*)$ http://local.website.co.uk/$1 [R=301,L]

#new Rule
#if its not a directory
RewriteCond %{REQUEST_FILENAME} !-d
#and it has a trailing slash then redirect to URL without slash
RewriteRule ^(.+)/$ /$1 [L,R=301]

# rest of your existing rules go here
于 2012-01-05T15:23:11.250 に答える