1

/video.php/test-videoURLをからに書き換えるのに問題があります/video/test-video

私は現在使用しています:

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?/$1 [L]
#RewriteRule ^/video/(.*)$ /video.php?/$1 [L]

私はすでにrewrite index.php/url-with-white-list/url-with-white-listます。これで、データベースのURLを使用するvideo.phpファイルができました。

に書き直したいだけvideo.php/url-of-the-videoですvideo/url-of-the-video

index.phpの書き換えは機能しますが、video.phpの書き換えを機能させることはできません。

何か案は ?

よろしくお願いします!

なにか提案を ?

よろしくお願いします

4

1 に答える 1

1

ソリューション:

RewriteCond %{REQUEST_URI}  ^(.*)video/(.*)
RewriteRule (.*)video/(.*)$ /video.php?/$2 [L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?/$1 [L]
于 2013-03-26T19:32:28.943 に答える