这是我的网站映射
--domain.com
------mainpage
---------index.php
我的domain.com里面有一个主页文件夹,在文件夹里面有一个index.php。
现在的网址
http://domain.com/mainpage/
我想要的网址(删除斜线)
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 :(得分:0)
试试这个:
RewriteEngine On
RewriteRule ^mainpage$ /mainpage/index.php [L]