0

我已经搜索了它..但没有找到解决方案。所以我发布了这个问题。
我有一个文件。.htaccess我正在尝试重定向网站index.php
示例:当用户输入demo.org/demo2/然后 url 重定向到demo.org/demo2/index.php. 注意index.phpdemo2目录内。

.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 没有重定向。提前致谢。

4

1 回答 1

1

你会想要这些方面的东西

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /

    RewriteCond %{REQUEST_URI} ^/demo2/?$
    RewriteRule ^$ http://demo.org/demo2/index.php [L,R=301]
</IfModule>
于 2013-09-13T06:13:02.333 回答