url重写.htaccess时出错

时间:2014-04-07 04:54:31

标签: php .htaccess rewrite

实际上,我不能流利使用。 Htaccess文件,以下代码行是从使用互联网获取的。但现在它出现了一些意外错误。 第一个错误:当我输入http://localhost/giccos/wall/username时(非常好的显示和错误,但是当我将它添加到后面.php时将其添加到http://localhost/giccos/wall/username?username=username并且如果我可以将其修复为http://localhost/giccos/wall/username?username=usernames2312312s页面这次) 我该如何解决?我希望它有点像facebook,如果我们添加.php正常操作。

这是我的烂摊子:

Options +FollowSymLinks -MultiViews
RewriteEngine on 
RewriteBase /giccos/
RewriteCond %{REQUEST_FILENAME} -d [OR] 
RewriteCond %{REQUEST_FILENAME} -s 
RewriteRule ^.*$ - [L]
RewriteRule ^status/(.*).php status.php?status_id=$1
RewriteRule ^hashtag/(.*).php hashtag.php?hashtag=$1
RewriteRule ^wall/(.*).php wall.php?username=$1
RewriteRule ^blog/(.*).php blog.php?url=$1
RewriteRule ^verify/user/(.*).php verify.php?user=$1
RewriteRule ^groups/(.*).php groups.php?groups_id=$1
#RewriteRule ^life/(.*) $1.php
RewriteRule ^life/ newsfeed.php
DirectoryIndex home.php
Options All -Indexes
## Auto remove .PHP
RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s([^.]+)\.php [NC]
RewriteRule ^ %1 [R,L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^(.*?)/?$ $1.php [L]

0 个答案:

没有答案