2016-08-05 7 views
0

は、どのように私は、htaccessを

--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] 

答えて

0

はこれを試してみてください:

RewriteEngine On 
RewriteRule ^mainpage$ /mainpage/index.php [L]