TP5.0 ??? ?? ??
URL? ?? http://localhost/tp5/public/
?? ?????? ???? ? ????.
????? URL? ????? ???? ????. ?, ??/???? URL?? ????/?? ??? ???? ???? ????, ????? ?? ?? ? ?? ???? ?????.
?:
http://localhost/index.php/Index/Blog/read//? ?? ???? ?????.
http://localhost/index.php/index/blog/read
?? ??
http://localhost/index.php/Index/BlogTest/read//? ????? ?? ???
http://localhost/index.php/index/blogtest/read
? ?????. ? ?? URL? ????? ???? ????. Camel Case ???? ???? ?????? ??? ???? ???.
http://localhost/index.php/Index/blog_test/read
?? ?? ? ?? ??? ??? ??? ?? ?????.
URL ????? ????? ???? ????? ?????? ?? ???? ?? ??? ? ????.
// URL 'url_convert' => false?? ???? ? ?? ??? ?? ??? ???.
?? ??? ??? URL ??? ???? ??? ????? ???? ???. ?? ?? ?? ??? ???
http://localhost/index.php/Index/BlogTest/read
??? ?? URL ???? ??? ?????.
http://localhost/index.php/Index/blog_test/read
?? URL ???? ???? ????.
http://localhost/index.php /Index/blogtest/read
??? ?? ??
ThinkPHP5.0??? ???? URL ??? ???? ?? URL ???? ?? ?? ?? ???? ?????. ??? Apache? ?? ?? ??? ?????. ?? ???? ?? ?? index.php? ????.
??? Apache? ?? ???????.
1. mod_rewrite.so ??? httpd.conf ?? ??? ?????.
2. AllowOverride None? All? ?????.
3. htaccess ??? ??? ????? ??? ??? ??? ????:
<IfModule mod_rewrite.c> Options +FollowSymlinks -Multiviews RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php/ [QSA,PT,L] </IfModule>