如何使用.htaccess在启动时调用index.php?

时间:2013-09-13 06:01:43

标签: php .htaccess redirect mod-rewrite

我一直在寻找它..但是找不到解决方案。所以我发布了这个问题 我有一个.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没有重定向。 提前谢谢。

1 个答案:

答案 0 :(得分:1)

你会想要这些内容

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /

    RewriteCond %{REQUEST_URI} ^/demo2/?$
    RewriteRule ^$ http://demo.org/demo2/index.php [L,R=301]
</IfModule>