我有一个视频建议插件in here 当您按ctrl + i。
时,这将打开我用这样的html文件嵌入视频:
<iframe src="http://website.com/embeds/dragonage.html"></iframe>
iframe url来自mysql数据库,我的表格看起来像this。
现在我想用漂亮的网址嵌入视频,所以这样做了:
<iframe src="http://neocsatblog.mblx.hu/embeds/dragonage.html"></iframe>
将if-src中的帖子名称写成有序的样子:
<iframe src="http://website.com/lindsey-stirling-egy-olyan-zseniális-anyagot-dobott-össze"></iframe>
我在这篇文章中引用了一些文章:
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) index.php?page=$1 [L]
但这不是真正的帮助,因为html文件名和域总是不同的
所以问题是:
如何使用漂亮的网址嵌入视频?