我在.htaccess中的重定向不起作用

时间:2012-03-01 21:16:03

标签: .htaccess redirect

我在我的public_html文件夹中使用.htaccess来重定向我的文件夹以获取:

RewriteCond%{REQUEST_FILENAME}!-f

RewriteRule ^([^ /] )/?([^ /] )/?$ index.php?v = $ 1& t = $ 2

当我输入我的页面时,它给了我一个404错误:

http://southeast.tv/1/e

但它应该重定向到:

http://southeast.tv/index.php?v=1&t=e

2 个答案:

答案 0 :(得分:2)

确保您拥有所有这些内容:

RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^/])/?([^/])/?$ index.php?v=$1&t=$2

答案 1 :(得分:1)

RewriteRule ^([^/]+)(\/)?([^/]+)? index.php?v=$1&t=$3