URL重写无法正常工作

时间:2012-05-07 11:49:47

标签: apache mod-rewrite ubuntu

我正在创建一个网站,但我不明白为什么mod_rewrite无效。

以下是目前的网址:http://www.treetle.com/profile/index/show/rameshmantha
并希望将其重写为http://www.treetle.com/profile/rameshmantha

其中rameshmantha是个人资料名称(动态来源) 这是我的.htaccess文件。

RewriteEngine on

Options +FollowSymLinks

RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule ^(.*)$ index.php/$1

RewriteRule ^/profile/([a-z]+)?$ /profile/index/show/$1[L,QSA]

1 个答案:

答案 0 :(得分:1)

RewriteRule ^(.*)$ index.php/$1匹配所有内容。您是否尝试将订单交换为:

RewriteRule ^/profile/([a-z]+)?$ /profile/index/show/$1[L,QSA]
RewriteRule ^(.*)$ index.php/$1