我正在创建一个网站,但我不明白为什么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]
答案 0 :(得分:1)
RewriteRule ^(.*)$ index.php/$1
匹配所有内容。您是否尝试将订单交换为:
RewriteRule ^/profile/([a-z]+)?$ /profile/index/show/$1[L,QSA]
RewriteRule ^(.*)$ index.php/$1