我已经创建了文件夹http://domain.com/sport/
我现在需要做的是每当我访问http://domain.com/sport/anything/anything/时都显示http://domain.com/sport/index.php的内容.
现在,其显示内容为http://livesports.pw/index.php
我在下面尝试了代码,但是没有用.
RewriteEngine On
RewriteBase /
RewriteRule ^(.+)\/$$1/ [R=301,L]
注意:文件夹/ sport /只是一个示例文件夹.可能会有所不同.即使创建了更多文件夹,它
必须为新产品工作.
解决方法:
用以下代码替换代码:
Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d [OR]
RewriteCond %{REQUEST_FILENAME} !-f [OR]
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^ - [L]
RewriteRule ^([^/]+)/?$/index.php [L]
RewriteRule ^([^/]+)/(.+?)/?$/$1/index.php [L]