用戶個人資料的網址是:的Zend framework2 URL我ZF2應用程序重寫
http:/mywebsite/profile/index/index/457/
這裏457是用戶的ID(比如rogger_federer)。
我希望我的URL看起來像這樣(通過使用URL ID從數據庫中獲取的用戶名)
http:/mywebsite/profile/rogger_federer
我htaccess文件是
RewriteEngine On
# The following rule tells Apache that if the requested filename
# exists, simply serve it.
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
# The following rewrites all other queries to index.php. The
# condition ensures that if you are using Apache aliases to do
# mass virtual hosting, the base path will be prepended to
# allow proper resolution of the index.php file; it will work
# in non-aliased environments as well, providing a safe, one-size
# fits all solution.
RewriteCond %{REQUEST_URI}::$1 ^(/.+)(.+)::\2$
RewriteRule ^(.*) - [E=BASE:%1]
RewriteRule ^(.*)$ %{ENV:BASE}index.php [NC,L]
我需要什麼樣的變化在.htaccess做文件?
請幫助。我對zend很陌生,對htaccess和模式沒有太多的瞭解。
在此先感謝。