我有一个网站,内容如此。
指数.php / home.php /profile.php /news.php /phos。 php
newsfeed.php - for news article
照片:php
还有一个用户名称,即用户可以简短地了解其形象。
mysite.com/UserName
现在,在用户名称中使用该代码的Im。
RewriteEngine on
RewriteOptions MaxRedirects=1
RewriteCond %{REQUEST_FILENAME} -f [NC,OR]
RewriteCond %{REQUEST_FILENAME} -d [NC]
RewriteRule .* - [L]
RewriteRule ^([^/]+)/?$ profile.php?u=$1 [L]
now I want to rewrite all my links to be SE-Friendly like this
index.php --> index
home.php --> home
photos.php --> photos
videos.php --> videos
newsfeed.php?id=xx --> news/xx
photo.php?id=xx --> photo/xx
那么,什么想法?