将地址保留在网址.htaccess中

时间:2014-07-07 18:03:41

标签: php regex apache .htaccess mod-rewrite

我的网站上有一个目录:

/new/

我想访问它并重定向到index.php,这是一个级别,但不希望地址更改网址,例如:

accessing: www.site.com/new/ 
check out www.site.com /index.php 
and the url remains www.site.com/new/ 

在htaccess中无法做到:

<IfModule mod_rewrite.c>
   RewriteEngine On
   RewriteRule ^novo/*$ /index.php [NC,L]
</IfModule>

他怎么办?

1 个答案:

答案 0 :(得分:1)

使用以下内容创建文件/new/.htaccess

RewriteEngine On    

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ /index.php [L]