我一直在寻找它..但是找不到解决方案。所以我发布了这个问题
我有一个.htaccess
档案。我正试图在index.php
上重定向网站
示例:当用户键入demo.org/demo2/
时,url会重定向到demo.org/demo2/index.php
。
注意:index.php
位于demo2
目录。
.htaccess file:
DirectoryIndex index.php index.html index.htm
php_value memory_limit 200M
php_value upload_max_filesize 200M
php_value post_max_size 200M
问题是url没有重定向。 提前谢谢。
答案 0 :(得分:1)
你会想要这些内容
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^/demo2/?$
RewriteRule ^$ http://demo.org/demo2/index.php [L,R=301]
</IfModule>