.htaccess
所以我从我的另一个项目中获得了以下文件内容,该项目在http://www.example.com/
.
Options -MultiViews
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L,NC,QSA]
</IfModule>
现在上面的工作很好,但现在我有一个新问题。我想使用相同的概念(将所有链接重定向到 index.php),但是这一次,它需要在一个目录中。(例如http://www.myothersite.com/thisfolder/
)
所以我尝试.htaccess
在http://www.myothersite.com/thisfolder/
. 问题是,如何修改上面的代码,使其指向index.php
inside的所有链接thisfolder
?
仅供参考,见下图:
myothersite.com
'-> thisfolder
'-> .htaccess
'-> index.php
我需要将.htaccess
文件放入其中,thisfolder
因为我不希望它与我在其他文件夹中的其他项目混淆。我想把所有的动作都放在里面http://www.myothersite.com/thisfolder/
。
谁能帮我吗?