处理了site.com/p/QUERY
的所有查询,但有些用户错误地使用site.com/QUERY
请求,他们看到404错误页面。
如何将site.com/QUERY
重定向到site.com/p/QUERY
并避免.htaccess出现404错误?
在htaccess教程和问题中没有为此案例找到任何解决方案。
答案 0 :(得分:1)
使用此
<Files index.php>
order allow,deny
deny from all
</Files>
# Turn on URL rewriting
RewriteEngine On
Options +FollowSymLinks
# Installation directory
RewriteBase /
# Allow these directories and files to be displayed directly:
RewriteCond $1 !^(index\.php|robots\.txt|favicon\.ico|img|js|css|media)
# Rewrite all other URLs to /p/URL
RewriteRule ^([^/]+)$ /p/$1 [PT,L]
# Rewrite all other URLs to /p/URL or /p/some.html?var=1&var2=2
RewriteRule ^(.*)$ /p/$1 [PT,L]