这是我的网站地图
--domain.com
------mainpage
---------index.php我的domain.com里面有一个mainpage文件夹,文件夹里面有一个index.php。
现在的url
http://domain.com/mainpage/我想要的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]发布于 2016-08-05 15:10:21
试试这个:
RewriteEngine On
RewriteRule ^mainpage$ /mainpage/index.php [L]https://stackoverflow.com/questions/38780317
复制相似问题