0
が
--domain.com
------mainpage
---------index.php
私のdomain.comは、内部のメインページのフォルダを持っていると、フォルダ内のindex.phpを持っている。このウェブサイトのマッピングを使用して、URL内のスラッシュを削除します。
今
http://domain.com/mainpage/
私が欲しかったURLは(スラッシュを取り除く)URL
http://domain.com/mainpage
の.htaccess
Options +FollowSymLinks
RewriteEngine On
DirectorySlash Off
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !directory/(.*)$
RewriteCond %{REQUEST_URI} !(.*)$
RewriteRule ^(.*)$ http://domain.com/mainpage/$1 [R=301,L]