常客问题:P
当前网址
http://domain.com/index.php
http://domain.com/index.php?page=submit-hosting
http://domain.com/index.php?page=popular-hosting
如何写我的.htaccess
以使当前网址像这样
当用户输入http://domain.com/index.php
时,只有http://domain.com/
index.php
并且$_GET['page']
的网页为http://domain.com/submit-hosting/
让我知道:)。
答案 0 :(得分:0)
来自谷歌我得到了
删除index.php
或index.html
RewriteCond %{THE_REQUEST} \ /(.+/)?index\.(html?|php)(\?.*)?\ [NC]
RewriteRule ^(.+/)?index\.(html?|php)$ ./$1 [R=301,L]
以斜线结尾
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteRule [^/]$ %{REQUEST_URI}/ [R=301,L]
RewriteCond %{REQUEST_URI} ^(/.*[^/])/?$
RewriteCond %{DOCUMENT_ROOT}%1.php -f
RewriteRule ^([^/]+)/?$ ./$1.php [QSA,L]
制作/ page-name /
RewriteRule ^([^/]*)/$ ./index.php?page=$1 [QSA,L]
这个有什么简单或更好的吗?