我在将 url 从/video.php/test-video
to重写时遇到问题/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 进行重写。
有任何想法吗 ?
提前,非常感谢!
有什么建议吗?
提前致谢