我在 htaccess 文件中做这个 .. 用于从不同页面重写 url
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([a-zA-Z0-9_-]+)$ profile.php?username=$1 [QSA]
RewriteRule ^([a-zA-Z0-9_-]+)/$ profile.php?username=$1 [QSA]
它工作正常..
现在我需要添加更多作为 facebook
你可以把 facebook.com/username
这是:facebook.com/profile.php?username=
&你可以把 facebook.com/pagename 是:facebook.com/pages.php?username=
并且工作正常
从不同的页面..
我需要像这样..
有什么帮助吗?!
RewriteRule ^([a-zA-Z0-9_-]+)$ profile.php?username=$1 [QSA]
RewriteRule ^([a-zA-Z0-9_-]+)/$ profile.php?username=$1 [QSA]
RewriteRule ^([a-zA-Z0-9_-]+)$ index.php?username=$1 [QSA]
RewriteRule ^([a-zA-Z0-9_-]+)/$ index.php?username=$1 [QSA]