.htaccess php处理程序modu rewrite
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了.htaccess php处理程序modu rewrite相关的知识,希望对你有一定的参考价值。
This is an .htaccess file for a mod_rewrite php url handler.
#Disables listing of files in directorys IndexIgnore * #Turns mod_rewrite on RewriteEngine On #If directory exists ignore RewriteRule RewriteCond %{REQUEST_FILENAME} !-d #If file exists ignore RewriteRule RewriteCond %{REQUEST_FILENAME} !-f #If link exists ignore RewriteRule RewriteCond %{REQUEST_FILENAME} !-l #Rewrite url and pass to variable $url(in php script use $_REQUEST['url'] #then write url handler to parse url in index.php) RewriteRule ^(.+)$ index.php?url=$1 [QSA,L]
以上是关于.htaccess php处理程序modu rewrite的主要内容,如果未能解决你的问题,请参考以下文章