0
私はウェブサイトを作っていますが、なぜmod_rewrite
が機能していないのですか?ここでURL書き換えが正しく機能しない
は存在URLです:http://www.treetle.com/profile/index/show/rameshmantha
、それはrameshmantha
は(動的に来る)プロファイル名 であり、ここで私の.htaccessファイルであるhttp://www.treetle.com/profile/rameshmantha
に書き換えることにしたいです。
RewriteEngine on
Options +FollowSymLinks
RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1
RewriteRule ^/profile/([a-z]+)?$ /profile/index/show/$1[L,QSA]