то как мне сделать так чтобы при запросе http://gameslon.com/client.php редиректило на http://gameslon.com/client, именно редиректило, а не то чтобы страница была доступна и по http://gameslon.com/client.php и по http://gameslon.com/client. Прилагаю свой .htaccess
AddDefaultCharset utf-8
php_flag register_globals Off
# не отображать ошибки пользователю
php_flag display_startup_errors off
php_flag display_errors off
php_flag html_errors off
RewriteEngine on
####убираем www
RewriteCond %{HTTP_HOST} ^www.gameslon.com
RewriteRule ^(.*)$ http://gameslon.com/$1 [R=301,L]
#########убираем index.php
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.php\ HTTP/
RewriteRule ^index\.php$ http://gameslon.com/$1 [R=301,L]
###убираем .php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(([^/]+/)*[^.]+)$ /$1.php [L]
####
#ErrorDocument 404 / 404.php
###
RewriteBase /
RewriteCond %{HTTP_HOST} (.*)
RewriteCond %{REQUEST_URI} /$ [NC]
RewriteRule ^(.*)(/)$ $1 [L,R=301]
Не могу сообразить, да и в интернете не нашел ответ на вопрос
PS ЗАРАНЕЕ СПАСИБО ЗА ПОМОЩЬ!