使用htaccess重定向的php页面不起作用

时间:2012-02-27 01:34:19

标签: php .htaccess mod-rewrite redirect url-rewriting

我正在尝试将非www重定向到我的php网站上的www并保持网址清洁,而不必链接到.php页面。

当我在下面使用非www到www的建议重定向时,页面链接不再转到正确的页面。例如:我有一个page1.php,当我链接到domain.com/page1(没有.php)时,该页面将不再加载。我怎样才能解决这个问题?我是否必须修改所有链接并添加页面扩展名(.php)才能使链接生效?

htaccess我正在使用:

RewriteEngine On

#This bit rewrites your host name to include www
RewriteCond %{HTTP_HOST} !^www\.example\.com [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [R=301,NC,L]

#This bit does the codeigniter magic
RewriteCond %{REQUEST_FILENAME} !-f  
RewriteCond %{REQUEST_FILENAME} !-d  
RewriteRule ^(.*)$ /index.php/$1 [L]

1 个答案:

答案 0 :(得分:0)

我找到了答案!

RewriteEngine On
RewriteBase /
#Rewrite bare to www
RewriteCond %{HTTP_HOST} ^example.com [NC] 
RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php [NC,L]